-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
45 lines (37 loc) · 1.12 KB
/
profile.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
<!Doctype html>
<html>
<head>
<title> Profile Page </title>
</head>
<!-- External style is applied to tags directly from a file-->
<link rel="stylesheet" href="style.css">
<body>
<h1> My Profile </h1>
<h2> <u>Details</u> </h2>
<b>Name: Vinay Kalyani</b>
<br><br>
<b>Date of Birth: 29/12/2001</b>
<br><br>
<b>College Name: Vivekanand Education Society's Institute Of Technology</b>
<br><br>
<b>Year & Branch : 3rd year IT</b>
<br><br>
<b><u>Skills</u></b>
<ul>
<li>Mysql</li>
<li>Web Development</li>
</ul>
<b><u>Photo</u></b>
<br><br>
<img src="pic.jpg" width="200" height="200">
<br><br>
<b><u>Video</u></b>
<br><br>
<video controls="controls" src="ocean.mp4" style="margin: 20px auto; width: 350px;;"></video>
<br><br>
<b><u>Audio</u></b>
<br><br>
<audio controls src="piano.mp3" type="audio/mpeg">
</audio>
</body>
</html>