generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stream2.html
40 lines (40 loc) · 1.29 KB
/
stream2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Hello World</title>
</head>
<body>
<div class="bg-img">
<nav>
<ul>
<li><a href="index.html">Stream 1</a></li>
<li><a href="stream2.html">Stream 2</a></li>
<li><a href="stream3.html">Stream 3</a></li>
</ul>
</nav>
</div>
<h1>What's covered in Stream 2</h1>
<div class="str">
<a href="https://en.wikipedia.org/wiki/JavaScript" target="_blank">
<img src="images/javascript-logo-1024.png" alt="JavaScript">
<h2>JavaScript</h2>
</a>
</div>
<div class="str">
<a href="https://en.wikipedia.org/wiki/Git" target="_blank">
<img src="images/Git-Icon-1788C.png" alt="Git">
<h2>Git</h2>
</a>
</div>
<div class="str">
<a href="https://en.wikipedia.org/wiki/GitHub" target="_blank">
<img src="images/GitHub-Mark-Light-120px-plus.png" alt="GitHub">
<h2>GitHub</h2>
</a>
</div>
</body>
</html>