-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.47 KB
/
index.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
<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="streamtwo.html">Stream Two</a></li>
<li><a href="streamthree.html">Stream Three</a></li>
</ul>
</nav>
<h1>Stream One</h1>
<div class="card">
<a href="https://en.wikipedia.org/wiki/JavaScript">
<img src="https://www.w3schools.com/whatis/img_js.png" / alt="JavaScript">
<h2>JavaScript</h2>
</a>
</div>
<div class="card">
<a href ="https://en.wikipedia.org/wiki/Cloud9">
<img src="https://liquipedia.net/commons/images/thumb/f/fd/Cloud9.png/600px-Cloud9.png" / alt="Cloud9">
<h2>Cloud9</h2>
</a>
</div>
<div class="card">
<a href ="https://en.wikipedia.org/wiki/Git">
<img src="https://sketchapphub.com/wp-content/uploads/2017/03/gitsketch.png" / alt = "Git">
<h2>Git</h2>
</a>
</div>
<div class="card">
<a href ="https://en.wikipedia.org/wiki/GitHub">
<img src="https://cdn.tutsplus.com/net/uploads/2013/08/github-collab-retina-preview.gif" / alt = "GitHub">
<h2>GitHub</h2>
</a>
</div>
</body>
</html>