-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 1.04 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
<!--
2024.02.17
-->
<!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="styles.css">
<script defer src="main.js"></script>
<title>kimpro82.github.io - MyWebPractice</title>
</head>
<body>
<!-- Header section with h1 element -->
<div>
<h1>My Web Practice</h1>
<!-- Introductory text -->
Frankly speaking, I'm not so interested in the web
</div>
<!-- Container for the recent update date -->
<div class="date-container" id="dateContainer"></div>
<!-- Container for links -->
<div class="links-container" id="linksContainer"></div>
<!-- Footer section -->
<footer>
<p>
<!-- GitHub link with badge -->
<a href="https://github.com/kimpro82/MyWebPractice/" target="_blank">
<img src="https://img.shields.io/badge/kimpro82.github.io/MyWebPractice-svg?logo=github&logoColor=black&color=white&&labelColor=white" alt="GitHub Repository">
</a>
</p>
</footer>
</body>
</html>