generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream-two.html
56 lines (56 loc) · 2.1 KB
/
stream-two.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 Two</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/Flask_(web_framework)" target="_blank">
<img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1518503935975/S1_-_WePM.png" alt="Flask">
<h2>Flask</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/MongoDB" target="_blank">
<img src="https://emanueleciriachi.net/wp-content/uploads/2019/01/logo-mongodb-png-mongodb-logo-png-400.png" alt="MongoDB">
<h2>MongoDB</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>
<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>
</body>
</html>