-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (94 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>My Profile</title>
<style>
body {
font-family: Arial, sans-serif;
}
h1 {
color: #0066cc;
}
img {
max-width: 200px;
border-radius: 50%;
margin: 10px;
}
audio, video {
margin: 10px 0;
}
table {
border-collapse: collapse;
}
th, td {
padding: 8px;
border-bottom: 1px solid #ccc;
}
</style>
</head>
<body>
<header>
<h1>My Profile</h1>
</header>
<section>
<!-- <img src="profile_picture.jpg" alt="Profile Picture"> -->
<p>
<strong>Name:</strong> Tejaswi koul<br>
<strong>Age:</strong> 20<br>
<strong>Email:</strong> [email protected]<br>
<strong>Location:</strong> Chembur, Mumbai
</p>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Python</li>
<li>React</li>
</ul>
</section>
<section>
<h2>Introduction</h2>
<audio controls>
<source src="intro_audio.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</section>
<section>
<h2>My Projects</h2>
<table>
<thead>
<tr>
<th>Project Name</th>
<th>Description</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<tr>
<td>Project 1</td>
<td> File management</td>
<td><a href="#">View Project</a></td>
</tr>
<tr>
<td>Project 2</td>
<td>short film </td>
<td><a href="#">View Project</a></td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>My Videos</h2>
<video width="320" height="240" controls>
<source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</section>
</body>
</html>