generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (52 loc) · 1.89 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
46
47
48
49
50
51
52
<!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>Streams - Code Institute</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 1</h1>
<div class="card">
<a href="https://en.wikipedia.org/wiki/HTML5" target="_blank">
<img src="images/HTML5_logo_and_wordmark.svg" alt="HTML5">
<h2>HTML5</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/CSS" target="=_blank">
<img src="images/CSS3_logo_and_wordmark.svg" alt="CSS3">
<h2>CSS3</h2>
</a>
</div>
<div class="gits">
<a href="https://www.gitpod.io/" target="_blank">
<img src="images/Gitpod.png" alt="Gitpod">
<h2>Gitpod</h2>
</a>
</div>
<div class="gits">
<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="gits">
<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>