-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 828 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 828 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sample Page</title>
<meta name="author" content="sample">
<meta name="keywords" content="sample">
<meta name="description" content="sample">
<link rel="stylesheet" href="./style.css">
<script src="./script.js"></script>
</head>
<body>
<header class="header">
<h1><a class="site_title" href="./index.html">Sample Page</a></h1>
</header>
<div class="content">
<h1>test page</h1>
<img src="./images/dummy.jpg" width="10%" height="10%">
<p>This site is my template html and css.</p>
</div>
<footer class="footer">
<p>©Sample site</p>
</footer>
</body>
</html>