generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream-three.html
56 lines (56 loc) · 2.18 KB
/
stream-three.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
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>hello world</title>
<link rel="stylesheet" href="css/style.css">
</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 Three</h1>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Python_(programming_language)" target="_blank">
<img src="https://sdtimes.com/wp-content/uploads/2019/08/opengraph-icon-200x200.png" alt="Python">
<h2>Python</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Django_(web_framework)" target="_blank">
<img src="https://dyltqmyl993wv.cloudfront.net/assets/stacks/djangostack/img/djangostack-stack-220x234.png" alt="Django">
<h2>Django</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Heroku" target="_blank">
<img src="https://c616b3614506f07e89ab-5cef763fe73fcec814d61b3b60a1ac9a.ssl.cf1.rackcdn.com/V1~213cbde7-233b-4988-a571-49c2d4df508e~172166e54395450f8c05410cc0ca4eb1" alt="Heroku">
<h2>Heroku</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Git" target="_blank">
<img src="https://miro.medium.com/max/325/0*tTvqxZBtyiDw3vVw.png" alt="Git">
<h2>Git</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/GitHub" target="_blank">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRYksPVg7y2R16ltCz1Kqs7GUdnXjCTzpYEE7XmdRSVRXEOt0lH&usqp=CAU" alt="GitHub">
<h2>GitHub</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/MySQL" target="_blank">
<img src="https://brawebbhotell.com/wp-content/uploads/2016/02/MYSQL-art-bra-webbhotell.jpg" alt="MySql">
<h2>MySQL</h2>
</a>
</div>
</body>
</html>