-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (44 loc) · 1.25 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
<!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 One</h1>
<div class="card">
<a href="https://en.wikipedia.org/wiki/JavaScript" target="_blank">
<img src="https://www.sololearn.com/Icons/Courses/1024.png"/>
<h2>JavaScript</h2>
</a>
</div>
</div>
<div class="row">
<div class="card">
<a href="https://en.wikipedia.org/wiki/Git">
<img src="https://git-scm.com/images/logos/logomark-orange@2x.png"/>
<h2>Git</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/GitHub">
<img src="https://anonyviet.com/wp-content/uploads/2018/05/github-mark.png"/>
<h2>Github</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Cloud9">
<img src="http://imgmr.com/wp-content/uploads/2016/03/cloud9.jpg"/>
<h2>Cloud9</h2>
</a>
</div>
</div>
</body>
</html>