-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
56 lines (51 loc) · 1.27 KB
/
portfolio.html
File metadata and controls
56 lines (51 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
</head>
<body>
<header>
<h1>itsjomon</h1>
<p>I love to code :)</p>
<img src="image.png" alt="Profile Photo" height="200px" width="200px">
<hr>
</header>
<section>
<h2>Education</h2>
<ul>
<li><b>10th Class, ABC School</b> : 0.0%</li>
<li><b>12th Class, PQR School</b> : 0.0%</li>
<li><b>B.E. CSE, XYZ College</b> : 0.0%</li>
</ul>
<hr>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>HTML, CSS, JavaScript</li>
<li>SQL, NoSQL</li>
<li>Python, Java</li>
</ul>
<hr>
</section>
<section>
<h2>Hobbies</h2>
<ul>
<li>Reading</li>
<li>Gaming</li>
</ul>
<hr>
</section>
<footer>
<h2>Contact</h2>
<ul>
<li>Email : email@example.com</li>
<li>Phone : +12 1234567890</li>
</ul>
<p>Made with ♥ by itsjomon</p>
</footer>
</body>
</html>
<!-- Portfolio with hr and semantic tags like header, section etc. -->