-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.04 KB
/
index.html
File metadata and controls
34 lines (32 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="google-site-verification" content="sMqkhs7U7QSwkMs_CA3LGWwhMSAF7lx3U5Oer-s_zsA" />
<title>Laggrif.github.io</title>
<link href="./assets/css/style.css" rel="stylesheet">
<link href="./assets/css/mystyle.css" rel="stylesheet">
</head>
<body>
<div id="title-bar-container"></div>
<script>
// Fetch and append the title bar content dynamically
const titleBarContainer = document.getElementById('title-bar-container');
fetch('./TitleBar.html')
.then(response => response.text())
.then(html => {
titleBarContainer.innerHTML = html;
});
</script>
<div class="content">
<div class="contentTitle">
<h2>Welcome to my website</h2>
</div>
<div class="contentText">
<p>
This is my personal website. I will be posting my projects here. If you want to contact me, you can do so with the links <a onclick="window.location.href='/contact'">here</a>.
</p>
</div>
</div>
</body>
</html>