-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
65 lines (55 loc) · 1.73 KB
/
template.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
<!DOCTYPE html />
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="author" content="Fergus Collins" />
<!-- Tab and websearch title: -->
<title>insert title</title>
<!-- Web crawler keywords and websearch description: -->
<meta name="keywords" content="item1,item2,item3" />
<meta name="description" content="Insert description here" />
<!-- Mobile friendly: -->
<meta name="viewport" content="width=device width, initial-scale=1.0" />
<!-- Stylesheets: -->
<link rel="stylesheet" type="text/css" href="css/w3.css" />
<!-- jQuery: -->
<script
src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"></script>
<!-- Compatibility with Internet Explorer versions earlier than IE9: -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
</script>
<![endif]-->
</head>
<body>
<!-- Example header -->
<header id="hdr:HeaderID">
<h1>insert header text</h1>
</header>
<!-- Example figure -->
<figure id="fig:FigureID">
<img
src="img/name-of-image.extension"
style="max-width:100%;height:auto;"
align="center"
alt="insert alternate text"
title="insert tooltip here"
id="img:ImageID" />
<figcaption>insert figure caption</figcaption>
<!-- TODO Style with CSS as opposed to HTML -->
</figure>
<!-- Example top heading and paragraph(goes down to h6): -->
<h1>insert top heading text</h1>
<p>
insert paragraph text
</p>
<!-- Horizontal rule and address bottomtext: -->
<hr>
<address>
Written by Fergus Collins.<br />
Please contact me at my Github page for further inquiries.
</address>
</body>
</html>