-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsamplehtml.html
More file actions
35 lines (33 loc) · 914 Bytes
/
samplehtml.html
File metadata and controls
35 lines (33 loc) · 914 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Sample HTML Document</title>
<meta name="description" content="This is a sample HTML file" />
<meta name="author" content="Administrator" />
<meta name="viewport" content="width=device-width; initial-scale=1.0" />
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
</head>
<body>
<div>
<header>
<h1>HTML Sample File</h1>
</header>
<nav>
<p>
<a href="/">Home</a>
</p>
<p>
<a href="/contact">Contact</a>
</p>
</nav>
<div>
</div>
<footer>
<p>© Copyright by Administrator</p>
</footer>
</div>
</body>
</html>