-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
156 lines (150 loc) · 6.99 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="form.css">
<link rel="icon" href="logo2.jpg">
</head>
<body>
<div class="profilepage">
<div class="heading">Welcome! You can make your profile here!</div>
<table>
<tr>
<td>
<table class="table1" class="table" >
<tr>
<th colspan="2" class="head" >Name</th>
</tr>
<tr>
<th>First Name:</th>
<th><textarea id="inputtext1" class="inputtext" placeholder="eg.Yash"></textarea></th>
</tr>
<tr>
<th>Middle Name:</th>
<th><textarea id="inputtext" class="inputtext" placeholder="eg.Rakesh"></textarea></th>
</tr>
<tr>
<th>Last Name:</th>
<th><textarea id="inputtext" class="inputtext" placeholder="eg.Sharma"></textarea></th>
</tr>
</table>
</td>
<td>
<img class="image1" src="reading.png">
</td>
</tr>
</table>
<table>
<tr>
<td>
<img class="image2" src="playtime.png">
</td>
<td>
<table class="table2" class="table" >
<tr>
<th colspan="2" class="head">General Info.</th>
</tr>
<tr>
<th>DOB:</th>
<th><textarea id="inputtext" class="inputtext" placeholder="eg.DD/MM/YYYY"></textarea></th>
</tr>
<tr>
<th>Birthplace:</th>
<th ><textarea id="inputtext" class="inputtext" placeholder="eg.Pune"></textarea></th>
</tr>
</table>
</td>
</tr>
</table>
<table>
<tr>
<td>
<table class="table3" class="table" >
<tr>
<th colspan="2" class="head">Hobbies</th>
</tr>
<tr>
<th>Hobby A:</th>
<th><textarea id="inputtext" class="inputtext"></textarea></th>
</tr>
<tr>
<th>Hobby B:</th>
<th><textarea id="inputtext" class="inputtext"></textarea></th>
</tr>
<tr>
<th>Hobby C:</th>
<th><textarea id="inputtext" class="inputtext"></textarea></th>
</tr>
</table>
</td>
<td>
<img class="image3" src="paint-palette.png"></td>
</tr>
</table>
<table>
<tr>
<td>
<img class="image4" src="sports (1).png">
</td>
<td>
<table class="table4" class="table" >
<tr>
<th colspan="2" class="head">Games you play</th>
</tr>
<tr>
<th>Sport A:</th>
<th><textarea id="inputtext" class="inputtext"></textarea></th>
</tr>
<tr>
<th>Sport B:</th>
<th><textarea id="inputtext" class="inputtext"></textarea></th>
</tr>
<tr>
<th>Sport C:</th>
<th><textarea id="inputtext" class="inputtext"></textarea></th>
</tr>
</table>
</td>
</tr>
</table>
<table>
<tr>
<td>
<table class="table5" class="table" >
<tr>
<th colspan="2" class="head">Accounts across the web</th>
</tr>
<tr>
<th>Instagram:</th>
<th><textarea id="inputtext" class="inputtext" placeholder=" @yash_rs"></textarea></th>
</tr>
<tr>
<th>Facebook:</th>
<th><textarea id="inputtext" class="inputtext" placeholder=" yrsharma"></textarea></th>
</tr>
<tr>
<th>Twitter:</th>
<th><textarea id="inputtext" class="inputtext" placeholder=" yashrs"></textarea></th>
</tr>
<tr>
<th>Linkedin</th>
<th><textarea id="inputtext" class="inputtext" placeholder=" yashsharma"></textarea></th>
</tr>
</table>
</td>
<td>
<img class="image5" src="social-media.png">
</td>
</tr>
</table>
<div class="submitButton">
<button class="submit"><a href="page2.html" id="submitButton" >Submit</a></button>
</div>
</div>
<div class="footer">
<p> Once you click on the submit button, you will be directed to a new page.</p>
</div>
</body>
</html>