-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.17 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>css practice</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header class="main">
<nav>this is nav</nav>
<div class="container">
<h1>Banner</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<button>click me </button>
</div>
</header>
<main>
<section class="sectionContant">
<div class="red"></div>
</section>
<section class="formSection">
<form action="">
<!-- <fieldset>
<legend>shorif</legend>
<h1>Css Form Style</h1>
</fieldset> -->
<h1>login form</h1>
<input type="email" placeholder="Enter Email" name="email" id="" class="input" >
<input type="password" placeholder="Enter PAssword" name="email" id="" class="input" >
<input type="submit" name="email" id="" class="input" >
</form>
</section>
</main>
</body>
</html>