-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (96 loc) · 3.69 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello</title>
<link rel="stylesheet" href="mystyle.css">
</head>
<body>
<div id="mainblock">
<div id="firstblock">
<p id="p1">
Name: Lorem ipsum dolor sit. <br>
Email: [email protected]<br>
Mobile:- 99XXXXXXX1<br>
University: LOREM University<br>
<img src="Profile.jpg" width="370" height="300" id="imageprof">
</p>
</div>
<div id="secondblock">
<h2>About Me</h2>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. <br>
Ut temporibus hic alias.Voluptatibus molestias,<br>
id cupiditate impedit velit fuga quia ipsam nobis? Maxime, quia nostrum?<br>
<ul class="list">
<b>Intrests</b>
<li>Software Developer</li>
<li>Deep Learning</li>
<li>Machine Learning</li>
<li>Computer Vision</li>
</ul>
<ol class="list">
<b>Games Played</b>
<li>Call of Duty</li>
<li>Sea of thieves</li>
<li>Pubg</li>
<li>Valorant</li>
</ol>
<dl>
<dt>Tea</dt>
<dd>Brown hot drink</dd>
<dt>ButterMilk</dt>
<dd>White cold drink</dd>
</dl>
</p>
</div>
<div id="thirdblock">
<h2>Form:</h2>
<form id="form1">
<table>
<tr>
<td><label for="fname">First Name:</label></td>
<td><input id="fname" type="text"></td>
</tr>
<tr>
<td><label for="lname">Last Name: </label></td>
<td><input id="lname" type="text"></td>
</tr>
<tr>
<td><label for="email">Email*: </label></td>
<td><input id="email" required type="email"></td>
</tr>
<tr>
<td><label for="pass">Password*: </label></td>
<td><input id="pass" required type="password"></td>
</tr>
<tr>
<td><label for="address">Address:</label></td>
<td><textarea id="address" rows="3" cols="30"></textarea> </td>
</tr>
</table>
<br>
<p>Select your subject of Intrests</p>
<input id="maths" type="checkbox">
<label for="maths">Maths</label>
<input id="english" type="checkbox">
<label for="english">English</label>
<input id="science" type="checkbox">
<label for="science">Science</label>
<p>Please select your Gender</p>
<input type="radio" id="male" name="gender">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender">
<label for="other">Other</label>
<br><br>
<input type="submit" value="Submit" id="accept">
<input type="reset" value="Reset" id="reject">
</form>
</div>
</div>
</body>
</html>