forked from khushi-purwar/WebDev-ProjectKart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 802 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
<!DOCTYPE html>
<html>
<head>
<title>Name Plate Generator</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="wrapper">
<div id="contents" class="plate">
<h1 class="header-text">Name Plate Generator</h1>
<hr class="my-2 divider" />
<div>
<form onsubmit="plateGenerate()" action="#">
<input name="userText" id="userText" type="text" placeholder="Your Text Here" class="form-text" required/>
<input type="submit" class="form-submit" value="Submit">
</form>
<div>
<ul id="out">
</ul>
</div>
</div>
</div>
</div>
</body>
<footer>
<script type="text/javascript" src="app.js"></script>
</footer>
</html>