-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
216 lines (100 loc) · 3.96 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3GXRFYCRYN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3GXRFYCRYN');
</script>
<meta charset="UTF-8" />
<title>Profile Page</title>
</head>
<body style="background-color:#b89c7c;color:#000000">
<h1 align="center"><u>Profile Page</u></h1>
<hr>
<div>
<div style="position: absolute;top: 100px; left: 100px;">
<h3 align="center"><u>Profile Picture</u></h3>
<br>
<img src="picturee.jpeg" width="160" height="230">
</div>
<div style="position: absolute;top: 400px; left: 30px;">
<table style="background-color: #ead3b7 ;color: #000000" cellpadding="5" cellspacing="5", border="1" >
<h3><u>Education</u></h3>
<tr>
<td><b>College Name:</b></td>
<td><a href="https://vesit.ves.ac.in/" style="color:#461852">Vivekanand Education Society Institute of Technology</td>
</tr>
<tr>
<td><b>Course:</b></td>
<td>Information Technology</td>
</tr>
<tr>
<td><b>Year:</b></td>
<td>Third Year</td>
</tr>
<tr>
<td><b>College Address:</b></td>
<td>Collector Colony, Chembur</td>
</tr>
<tr>
<td><b>Skill Set:</b></td>
<td>
<ul>
<li>C</li>
<li>Java</li>
<li>Python</li>
<li>C++</li>
</ul>
</td>
</tr>
</table>
</div>
<div style="position: absolute;top: 100px; left: 500px;">
<table align=center cellpadding="5" cellspacing="10">
<h3 align="center"><u>Personal Information</u><br></h3>
<tr>
<td><b>Name:</b></td>
<td>Samartha Rayguru</td>
</tr>
<tr>
<td><b>Age:</b></td>
<td>19</td>
</tr>
<tr>
<td><b>Date of Birth:</b></td>
<td>29/11/2002</td>
</tr>
<tr>
<td><b>Gender:</b></td>
<td>female</td>
</tr>
<tr>
<td><b>Phone No:</b></td>
<td>8763323326</td>
</tr>
<tr>
<td><b>Email Id:</b></td>
<td>[email protected]</td>
</tr>
<tr>
<td><b>City:</b></td>
<td>Mumbai</td>
</tr>
</table>
</div>
<div style="position: absolute;top: 380px; left: 550px;">
<br>
</br>
<br>
<h3 ><b><u>Introduction Video</u></b></h3>
<iframe width="560" height="315" src="https://www.youtube.com/embed/4d1B1DvlLqo" frameborder="40px" allowfullscreen>
</iframe>
</br>
</div>
</div>
</body>
</html>