forked 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.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>Stream Three</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_%28programming_language%29" target="_blank">
<img src="http://www.pngall.com/wp-content/uploads/2016/05/Python-Logo-PNG-Image.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="http://rtfm.co.ua/wp-content/uploads/2014/11/django_logo_1.png" alt="Django">
<h2>Django</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Heroku" target="_blank">
<img src="https://api.slack.com/img/api/hosting_heroku.png" alt="Heroku">
<h2>Heroku</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Git" target="_blank">
<img src="https://superdevresources.com/wp-content/uploads/2015/01/GIT-logo_300x300.jpg" alt="Git">
<h2>Git</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/GitHub" target="_blank">
<img src="https://res.cloudinary.com/hy4kyit2a/image/upload/v1498165869/doc/trailhead/staging/team-trailhead_get-started-with-salesforce-dx_en-us_git-and-git-hub-basics_images_3-githublogo_277c3b7d65dd1cfc6fc40fa94989815e.png" alt="GitHub">
<h2>GitHub</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/MySQL" target="_blank">
<img src="https://tse1.mm.bing.net/th?id=OIP.0owmKibzXq4JOm6GPOPmnQHaHa&pid=Api&P=0&w=300&h=300" alt="MySQL">
<h2>MySQL</h2>
</a>
</div>
</body>
</html>