-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (37 loc) · 1.19 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>form</title>
</head>
<body>
<header>
<nav>
<ul>
<li class="item1"><a href="practice/components/buttons/navsvgbtn.html">nav</a></li>
<li class="item2"><a href="/components/buttons/navsvgbtn.html">wof</a></li>
<li class="item3"><a href="">sfgrs</a></li>
</ul>
</nav>
</header>
<main>
<h1>hello worldz</h1>
<div class="container">
<h1>login</h1>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.</p>
<form action="" class="formbox">
<label for="Username">Username</label>
<input type="name" placeholder="Username">
<label for="email">Registered Email</label>
<input type="email" placeholder="email">
<div>
<button onclick="history.back" class="btn1" type="cancel">cancel</button>
<button class="btn2" ype="submit">Send</button>
</div>
</form>
</div>
</main>
</body>
</html>