-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask1.html
More file actions
38 lines (38 loc) · 1.19 KB
/
task1.html
File metadata and controls
38 lines (38 loc) · 1.19 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
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>task 1</title>
<link rel="stylesheet" href="task1.css">
</head>
<body>
<header class="main">
<nav>
<h3>this is nav bar</h3>
</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>SHARIF MUNSHI</legend>
<h4>css forme</h4>
</fieldset> -->
<h1>login form</h1>
<input type="email" placeholder="Enter Email">
<input type="password" placeholder="Enterp password">
<input type="submit" >
</form>
</section>
</main>
</body>
</html>