-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Stream One</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 One</h1>
<div class="card">
<a href="https://en.wikipedia.org/wiki/HTML5">
<img src="https://www.sygnetinfosol.com/images/inpage-images/html-web-development.png" />
<h2>HTML5</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Cascading_Style_Sheets">
<img src="https://thumbsplus.tutsplus.com/uploads/users/1251/posts/26216/preview_image/CSSCover.png?height=300&width=300" />
<h2>CSS</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/JavaScript">
<img src="https://www.javatpoint.com/images/javascript/javascript_logo.png" />
<h2>JavaScript</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Cloud9_IDE">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Cloud9IDE.png/260px-Cloud9IDE.png" />
<h2>Cloud9</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>
</body>
</html>