generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stream-three.html
56 lines (56 loc) · 2.14 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://www.ideassn.org/wp-content/uploads/2017/06/python-logo.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://www.edgica.com/wp-content/files/django-logo-big.jpg" alt="Django">
<h2>Django</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Heroku" target="_blank">
<img src="https://cdn.worldvectorlogo.com/logos/heroku.svg" alt="Heroku">
<h2>Heroku</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Git" target="_blank">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTJiM8NSMWqVe12YQFoC0pYkn0i4AZoZWwl6zJiHJdjAKBcYR9N" alt="Git">
<h2>Git</h2>
</a>
</div>
<div class="card">
<a href="https://es.wikipedia.org/wiki/GitHub" target="_blank">
<img src="https://www.pngitem.com/pimgs/m/128-1280162_github-logo-png-cat-transparent-png.png" alt="GitHub">
<h2>GitHub</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/MySQL" target="_blank">
<img src="https://i0.wp.com/www.elearningworld.org/wp-content/uploads/2019/04/MySQL.svg.png?fit=600%2C400&ssl=1" alt="MySQL">
<h2>MySQL</h2>
</a>
</div>
</body>
</html>