forked from geekinks/webdev-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (40 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
</head>
<body>
<h1>About Me</h1>
<h2>Name:</h2>
<p><!-- Your Name Here --></p>
<h2>Department:</h2>
<p><!-- Your Department Here --></p>
<h2>Level:</h2>
<p><!-- Your Level Here --></p>
<h2>Career Goals:</h2>
<p><!-- Briefly mention your career aspirations --></p>
<h2>Bio:</h2>
<p><!-- Share something about yourself --></p>
<h2>Fun Fact:</h2>
<p><!-- Mention a fun or interesting fact about you --></p>
<h2>What I Learned from the Previous Session:</h2>
<p><!-- Reflect on the key takeaway from your last learning session --></p>
<h2>Tools for Web Development:</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Git and GitHub</li>
<li>Bootstrap</li>
<li>VS Code</li>
</ul>
<h2>Social Media Links:</h2>
<ul>
<li><a href="https://github.com/yourusername" target="_blank">GitHub</a></li>
<li><a href="https://twitter.com/yourusername" target="_blank">Twitter</a></li>
<li><a href="https://linkedin.com/in/yourusername" target="_blank">LinkedIn</a></li>
</ul>
</body>
</html>