-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
39 lines (35 loc) · 956 Bytes
/
project.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
<!DOCTYPE html>
<html lang="en" id = "html">
<script src = "JavaScript/jquery-3.4.1.js"></script>
<script>
$(function(){
$("header").load("header.html");
$("head").load("head.html");
$("footer").load("footer.html");
});
</script>
<head>
</head>
<body hidden>
<header></header>
<div id = "content" >
<div id = "top">
<h1 class="header">Websites </h1>
<br>
</div>
</div>
<main>
<section class="sectionContainer">
<h2> <a class="menu" href = "https://www.trackmylifts.ca" >Track My Lifts</a></h2>
<iframe id="trackmyliftsIframe" class = "projectWebsite" height = "1900" src="https://www.trackmylifts.ca" title="Track My Lifts"></iframe>
</section>
</main>
<footer>
</footer>
</body>
<script>
$(function(){
$("#projects").before()
});
</script>
</html>