-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path09.html
More file actions
60 lines (60 loc) · 2.21 KB
/
09.html
File metadata and controls
60 lines (60 loc) · 2.21 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nyagrodha</title>
<meta property="og:title" content="Our menu">
<meta property="og:type" content="website">
<meta property="og:image" content="image1.png">
<meta property="og:url" content="http://nyagrodha">
<meta property="og:description" content="Nyagrodha is a south Indian cafe that serve all type of south Indian foods.">
<link rel-"stylesheet" href="10.css">
</head>
<body>
<header>
<img src="img1.jpg" width="550" height="300" /> <!--just for example-->
</header>
<nav>
<ul>
<li><a href="index1.html">Home</a></li>
<li><a href="location.html">Location</a></li> <!--just for example-->
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
<main>
<h1>Sign Up</h1>
<form>
<div>
<label>First name</label>
<input type="text" id="first_name" name="first_name" required minlength="3" maxlength="12">
</div>
<div>
<label>Last name</label>
<input type="text" id="last_name" name="last_name" required minlength="3" maxlength="12">
</div>
<div>
<label>Email Id</label>
<input type="email" id="email" name="email" required>
</div>
<div>
<label>Password</label>
<input type="password" id="password" name="password" required>
</div>
<div>
<label>Confirm Password</label>
<input type="password" id="confirm_password" name="confirm_password" required>
</div>
<div>
<button type="submit">Sign Up</button>
</div>
</form>
<style>
input:focus:invalid{
border: 2px solid red;
}
</style>
</main>
<footer>
<p> <i> Copyright Nyagrodha </i> </p>
</footer>
</body>
</html>