-
Notifications
You must be signed in to change notification settings - Fork 0
/
UIDassignment2.html
75 lines (75 loc) · 3.05 KB
/
UIDassignment2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>UIDassignment</title>
<link rel="stylesheet" href="UIDassignment.css">
</head>
<body>
<header>
<div class="penguin">
<div class="penguin-bottom">
<div class="right-hand"></div>
<div class="left-hand"></div>
<div class="right-feet"></div>
<div class="left-feet"></div>
</div>
<div class="penguin-top">
<div class="right-cheek"></div>
<div class="left-cheek"></div>
<div class="belly"></div>
<div class="right-eye">
<div class="sparkle"></div>
</div>
<div class="left-eye">
<div class="sparkle"></div>
</div>
<div class="blush-right"></div>
<div class="blush-left"></div>
<div class="beak-top"></div>
<div class="beak-bottom"></div>
</div>
</div>
<div class="container"><span class="txt1">USER INTERFACE DESIGN</span>
<span class="txt2">ASSIGNMENT II</span></div>
</header>
<div class="logo"><h1>UID</h1></div>
<form action="/" class="applicationform">
<label for="name">Name
<input type="text" id="name" placeholder="Name...">
</label><br/>
<label for="password">Password
<input type="password" name="pas" id="password" placeholder="Password..." onblur="passwordChecking(this.value)">
</label>
<br/>
<label for="confirmPassword">Confirm Password
<input type="password" name="pass" id="confirmPassword" placeholder="Password..." onblur="confirmPassword(this.value)">
</label>
<br/>
<label for="city">City
<select name="nameofthecity" id="city">
<option value="select">Select City</option>
<option value="Chennai">Chennai</option>
<option value="Delhi">Delhi</option>
<option value="Mumbai">Mumbai</option>
<option value="Guwahati">Guwahati</option>
<option value="Bangalore">Bangalore</option>
</select>
</label><br/>
<label for="gender">Gender
<input type="radio" id="male" name="male" id="gender" value="male">Male
<input type="radio" id="female" name="female" id="gender" value="female">Female
</label><br/>
<label for="mail">Gmail
<input type="email" id="mail1" placeholder="Email..." onblur="email(value)">
</label><br/>
<button id="but">Submit</button>
</form>
<footer>
<p>Design by Rangkynsai Saio | © 2019 |</p>
</footer>
<script src="UIDassignment.js"></script>
</body>
</html>