blob: faa51adbfce1dab8d567f5ffa4b4f966ccbb44b0 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="My personal website, made by hand with with love.">
<meta name="author" content="Ambrose">
<title>Ambrose's Personal Webpage</title>
<link rel="Website icon" href="/static/favicon.svg" type="image/svg">
<link rel="stylesheet" href="styles.css">
<script src="/static/js/jquery-1.10.2.js"></script>
</head>
<body>
<h1 class="title">Ambrose's Personal Webpage</h1>
<!--navigation bar-->
<div id="nav-placeholder">
</div>
<script>
$(function(){
$("#nav-placeholder").load("/static/nav.html");
});
</script>
<!--end of navigation bar-->
<p class="welcome">
Welcome to my webpage! (Ru. Добро пожаловать на мою веб-страницу)
</p>
<!--footer-->
<div id="footer-placeholder">
</div>
<script>
$(function(){
$("#footer-placeholder").load("/static/footer.html");
});
</script>
<!--end of footer-->
</body>
</html>
|