-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiary.html
66 lines (61 loc) · 1.79 KB
/
diary.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<title>Diary</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" type="text/css" href="/css/main.css" />
<link
rel="stylesheet"
type="text/css"
href="//fonts.googleapis.com/css?family=Open+Sans"
/>
</head>
<body onload="fillGeneric()">
<div id="container">
<div id="top">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./photos.html">Photos</a></li>
<li><a class="active" href="./diary.html">Diary</a></li>
<li style="float:right">
<a id="js_title" class="blank" href="./info.html"></a>
</li>
</ul>
</div>
<div id="leftnav"></div>
<!-- <div id="header_main" class="container_wrap">-->
<div id="content">
<p>
Sometime over Easter bank holiday 2019.
</p>
<a href="\images\originals\DSC01112.JPG"
><img
src="\images\photos\DSC01112.JPG"
alt="Picture cannot be found."
class="reg-image"
/>
</a>
<p>
Windows are installed and getting boxed in. Accepting imperfection is
becoming a well rehearsed event.
</p>
<a href="\images\originals\DSC01116.JPG"
><img
src="\images\photos\DSC01116.JPG"
alt="Picture cannot be found."
class="reg-image"
/>
</a>
</div>
</div>
</body>
<footer>
<p>
/Website built using VSCode (extensions: Live Sass Compiler, Live Server,
Auto Rename Tag)
</p>
<script src="./js/main.js"></script>
</footer>
</html>