generated from delayrider/my-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.75 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=>, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Hello World</title>
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Stream One</a></li>
<li><a href="stream-two.html">Stream Two</a></li>
<li><a href="stream-three.html">Stream Three</a></li>
</ul>
</nav>
<h1>Stream One</h1>
<div class="card">
<a href="https://en.wikipedia.org/wiki/HTML5" target="_blank">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/HTML5_logo_and_wordmark.svg/1280px-HTML5_logo_and_wordmark.svg.png" alt="HTML 5">
<h2>HTML 5</h2>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/CSS" target="_blank">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/CSS3_logo_and_wordmark.svg/1024px-CSS3_logo_and_wordmark.svg.png" alt="CSS 3">
<h2>CSS 3</h2>
</div>
<div class="card">
<a href="https://www.gitpod.io/" target="_blank">
<img src="https://avatars.githubusercontent.com/u/37021919?s=280&v=4" alt="Gitpod">
<h2>Gitpod</h2>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Git" target="_blank">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Git-logo.svg/2560px-Git-logo.svg.png" alt="Git">
<h2>Git</h2>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/GitHub" target="_blank">
<img src="https://cdn-icons-png.flaticon.com/512/25/25231.png" alt="GitHub">
<h2>GitHub</h2>
</div>
</body>
</html>