-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream-three.html
54 lines (53 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<title>Stream Three</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://www.python.org/static/opengraph-icon-200x200.png" />
<h2>Python</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Django_(web_framework)">
<img src="https://i.pinimg.com/236x/d9/70/36/d97036b366cf7dc60cebf3a4fee58463--python-web-software-development.jpg" />
<h2>Django</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Heroku">
<img src="https://dab1nmslvvntp.cloudfront.net/wp-content/uploads/2016/04/1461122387heroku-logo.jpg" />
<h2>Heroku</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Git">
<img src="https://git-scm.com/images/[email protected]" />
<h2>Git</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/github">
<img src="https://assets-cdn.github.com/images/modules/site/logos/desktop-logo.png" />
<h2>Github</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/MySQL">
<img src="http://www.geekpills.com/wp-content/uploads/2012/12/mysql-logo.png" />
<h2>MySQL</h2>
</a>
</div>
</body>
</html>