-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfsdday6.html
More file actions
34 lines (34 loc) · 1.25 KB
/
Copy pathfsdday6.html
File metadata and controls
34 lines (34 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="fsdday6.css">
<title>Demo Day 6</title>
</head>
<body>
<!-- <h1 class="main-heading">Demo day 6</h1> -->
<nav class="menu-nav">
<ul class="menu-list">
<li style="line-height:57px;"><a>I & T LABS</a></li>
<div class="items">
<li class="menu-item active"><a href="#">Home</a></li>
<li class="menu-item"><a href="aboutus.html">About us</a></li>
<li class="menu-item"><a href="#">Contact us</a></li>
<li class="menu-item"><a href="#">Login</a></li>
</div>
</ul>
</nav>
<h1>FORM DEMO</h1>
<div style="width:500px;height:auto; background:rgb(198, 12, 222)">
<div style="padding:10px; margin:1px;">
<form action="">
<label>First Name</label><br><br>
<input type="text" name="fname" placeholder="Enter first name" class="input-box">
<br><br>
<label>Last Name</label><br><br>
<input type="text" name="fname" placeholder="Enter last name" class="input-box">
<br><br>
</form>
</div>
</div>
</body>
</html>