generated from delayrider/my-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream-two.html
35 lines (35 loc) · 1.3 KB
/
stream-two.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
<!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 Two</h1>
<div class="card">
<a href="https://en.wikipedia.org/wiki/JavaScript" target="_blank">
<img src="https://fedojo.com/wp-content/uploads/2019/03/logo-javascript-png-html-code-allows-to-embed-javascript-logo-in-your-website-587.png" alt="JavaScript">
<h2>JavaScript</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>