-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 896 Bytes
/
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
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div class="container">
<div class="sub">
<div class="text">
<label>Enter the number of <span id="para">paragraphs</span> you need</label><br><br>
</div>
<div class="input">
<input id="txt" type="text" name="text"/>
</div>
<div class="btn">
<input id="btn" type="submit" value="Generate"/>
</div>
<div id="paragraphDiv">
<p id="paragraph"></p>
</div>
</div>
</div>
</body>
<script src="getPara.js"></script>
</html>