-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (58 loc) · 2.05 KB
/
index.html
File metadata and controls
59 lines (58 loc) · 2.05 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
<!DOCTYPE html>
<html>
<head>
<title>A Fluffian's Cove</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="./src/Assets/favicon.ico" type="image/x-icon" >
<link rel="stylesheet" href="./src/CSS/root.css" type="text/css">
<link rel="preload" as="font" href="./src/Assets/Candara.ttf" type="font/ttf" crossorigin>
<meta property="og:url" content="https://lps100.github.io/">
<meta property="og:site_name" content="Fluffian's Cove">
<meta name="keywords" content="LPS100">
<meta name="description" content="Welcome to our website!">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="wrapper">
<div class="section">
<div class="sidebar">
<div id="portrait"></div>
<div id="sidebartext"></div>
<div class="sidebar-title">Index</div>
<div class="index">
<div class="divider"></div>
<div class="buttongrid">
<button class="button"><a href="/aboutme">About</a>
</button>
<button class="button">
<a href="/portfolio">Portfolio</a>
</button>
<button class="button endbutton">
<a href="/contactme">Contact</a>
</button>
</div>
</div>
<div class="footer-container">
<div id="footer"></div>
</div>
</div>
</div>
<!--===================== Content =========================-->
<div id="content-edvrian">
<div class="content-inner-edvrian">
<div id="main"></div>
</div>
</div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script>
$(function(){
$("#main").load("index_page.html");
$("#portrait").load("sidebar_portrait.html");
$("#sidebartext").load("sidebar.html");
$("#footer").load("footer.html");
});
</script>
</html>