-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 952 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" href="css/style.css">
<meta charset="utf-8">
<title>Project Purity</title>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<div class="main-wraper">
<div id="header"></div>
<main>
<div id="flex-2">
<div id="flex-3">
</div>
<div id="flex-4">
<div id="support-us">
<p>very nice begging message</p>
<a id="support-us-button" href="support-us.html">suport us</a>
</div>
</div>
</div>
</main>
</div>
<div id="footer"></div>
</body>
</html>