-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
37 lines (28 loc) · 889 Bytes
/
test.html
File metadata and controls
37 lines (28 loc) · 889 Bytes
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
<!-- ####### THIS IS A COMMENT - Visible only in the source editor #########-->
<html>
<head>
<link rel="stylesheet" href="CSS/personal_style.CSS">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(function(){
$('#adventures').load('adventures-menu.html');
});
</script>
<link rel="shortcut icon" type="image/png" href="Images/favicon.png">
</head>
<body>
<a href="index.html" class="heading"><h1>Frederik Brooke Barnes</h1></a>
<h2> Test </h2>
<img class="hero" src="Images/s-comp.jpg" alt="psd" title="sd">
<div class="content-section">
<img class=landscape src="Images/z-comp.jpg" alt="z" title="z">
<p> </p>
<img class=landscape src="Images/s-comp.jpg" alt="" title="s">
<p> </p>
<!--COMMENT-->
<div id="adventures">
</div>
</div>
</body>
</html>