-
Notifications
You must be signed in to change notification settings - Fork 0
/
Demo.html
45 lines (45 loc) · 1.14 KB
/
Demo.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
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,intial-scale=1.0" />
<link rel="stylesheet" href="Demo.css" />
<title>Home Page</title>
</head>
<body>
<div class="header">
<div class="left">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
<div class="right">
<button>Login</button>
</div>
</div>
<br />
<p>For new user:-</p>
<form>
<label for="fname">First Name:</label>
<input type="text" id="fname" value="enter your first name" /><br /><br />
<label for="lname">Last Name:</label>
<input type="text" id="lname" value="enter your last name" /><br /><br />
<input type="button" value="Submit" />
</form>
<div class="AboutUs">
<ul>
<p>About Us:-</p>
<li>GOALS</li>
<li>OBJECTIVE</li>
<li>MISSION</li>
</ul>
</div>
<div class="detail">
<h3>GOALS</h3>
<h3>OBJECTIVE</h3>
<h3>MISSION</h3>
</div>
<div class="footer">
<h5>Feel free to contact us</h5>
</div>
</body>
</html>