forked from Git-Harshit/Random_Text_Generator-Brython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (22 loc) · 1.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Text Generator</title>
</head>
<body onload="brython()">
<!-- External CSS -->
<link rel="stylesheet" href="stylesheet.css">
<section id="TopBox"></section>
<!-- Division for containing Random Text -->
<!-- <pre id="RandomText" class="textBox"></pre> -->
<article id="RandomText" class="textBox"><center> [ Your Random Generated text will appear here ] </center></article> <!-- [ Random Generated text will appear here ] -->
<!-- End of Division containing Random Text -->
<!-- Executing Python program in Browser with Brython -->
<script type="text/python" src="brython_script.bry"></script> <!-- Linking Brython (*.bry) script -->
<!-- Including Brython v3.8.9 using CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/brython/3.8.9/brython.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/brython/3.8.9/brython_stdlib.min.js"></script>
</body>
</html>