-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 997 Bytes
/
Copy pathindex.html
File metadata and controls
38 lines (38 loc) · 997 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
38
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML Example</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>HTML Example</h1>
<p>
By <a href="http://pocztarski.com/" target="_blank">Rafał Pocztarski</a>
</p>
<p>
For <a href="https://github.com/rsp/node-static-http-servers" target="_blank">github.com/rsp/node-static-http-servers</a>
</p>
<p>
Files:
<a href="index.html">HTML</a>,
<a href="avatar.gif">GIF</a>,
<a href="photo.jpg">JPG</a>,
<a href="script.js">JS</a>,
<a href="style.css">CSS</a>,
<a href="text.txt">TXT</a>,
<a href="x">404</a>
</p>
<p>
GIF:<br>
<img class="avatar" src="avatar.gif">
</p>
<p>
JPEG:<br>
<img class="photo" src="photo.jpg">
</p>
<p class="style" style="opacity: 0">Styles are loading</p>
<p class="script"></p>
<script src="script.js"></script>
</body>
</html>