-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (108 loc) · 3.36 KB
/
Copy pathindex.html
File metadata and controls
122 lines (108 loc) · 3.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>My Life Story</title>
</head>
<body>
<header>
<h1>My Personal Journey</h1>
<nav>
<a href="#about">About Me</a> | <a href="#experiences">Experiences</a> |
<a href="#contact">Contact</a>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>Hello! I'm <strong>Your Name</strong>, and this is my story.</p>
<p><em>I am passionate about</em> learning and growing every day.</p>
<p><u>My unique qualities</u> include creativity and determination.</p>
</section>
<section id="experiences">
<h2>My Experiences</h2>
<h3>Educational Journey</h3>
<ul>
<li>Elementary School</li>
<li>
High School
<ul>
<li>Favorite Subjects</li>
<li>Extracurricular Activities</li>
</ul>
</li>
<li>Current Studies</li>
</ul>
<h3>Achievements</h3>
<ol>
<li>First Achievement</li>
<li>Second Achievement</li>
<li>Future Goals</li>
</ol>
<blockquote>
<p>"Life is a journey of learning and discovery."</p>
<cite>- Anonymous</cite>
</blockquote>
</section>
<section id="media">
<h2>My Media</h2>
<img src="me.jpg" alt="My Profile Picture" width="400" height="300" />
<h3>My Audio Introduction</h3>
<audio controls>
<source src="/api/placeholder/audio" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
<h3>My Life Video</h3>
<video width="400" height="300" controls>
<source src="/api/placeholder/video" type="video/mp4" />
Your browser does not support the video element.
</video>
</section>
<section id="skills">
<h2>Skills Overview</h2>
<table border="1">
<thead>
<tr>
<th>Skill Category</th>
<th>Skills</th>
<th>Proficiency Level</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="3">Technical Skills</td>
<td>HTML</td>
<td>Beginner</td>
</tr>
<tr>
<td>CSS</td>
<td>Learning</td>
</tr>
<tr>
<td>JavaScript</td>
<td>Upcoming</td>
</tr>
<tr>
<td colspan="3">More skills to be added soon!</td>
</tr>
</tbody>
</table>
</section>
<section id="contact">
<h2>Contact Me</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" /><br />
<label for="email">Email:</label>
<input type="email" id="email" name="email" /><br />
<label for="message">Message:</label>
<textarea id="message" name="message"></textarea><br />
<input type="submit" value="Send" />
</form>
</section>
</main>
<footer>
<p>© 2024 My Personal Website. All rights reserved.</p>
</footer>
</body>
</html>