-
Notifications
You must be signed in to change notification settings - Fork 0
/
stream-three.html
53 lines (53 loc) · 1.95 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
<!DOCTYPE html>
<html>
<head>
<title>Hello, World!</title>
<link rel="stylesheet" href="css/style.css" type="text/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)">
<img src="https://proxy.duckduckgo.com/iu/?u=https%3A%2F%2F2s7gjr373w3x22jf92z99mgm5w-wpengine.netdna-ssl.com%2Fwp-content%2Fuploads%2F2016%2F08%2Fpython_logo_1.png&f=1" alt="Python logo and wordmark"/>
<h2>Python</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Django_(web_framework)">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Django_logo.svg/520px-Django_logo.svg.png" alt="Django logo and wordmark"/>
<h2>Django</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Heroku">
<img src="https://upload.wikimedia.org/wikipedia/en/a/a9/Heroku_logo.png" alt="Heroku logo and wordmark"/>
<h2>Heroku</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Git">
<img src="https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2Fipengineer.net%2Fwp-content%2Fuploads%2F2015%2F04%2Fgit-logo.jpg&f=1" alt="Git logo and wordmark"/>
<h2>Git</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/GitHub">
<img src="https://proxy.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.tutsplus.com%2Fnet%2Fuploads%2F2013%2F08%2Fgithub-collab-retina-preview.gif&f=1" alt="GitHub logo and wordmark" />
<h2>GitHub</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/MySQL">
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/6/62/MySQL.svg/272px-MySQL.svg.png" alt="MySQL logo and wordmark"/>
<h2>MySQL</h2>
</a>
</div>
</body>
</html>