-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 2.06 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
<!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/HTML5">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/HTML5_logo_and_wordmark.svg/1200px-HTML5_logo_and_wordmark.svg.png" alt="HTML5 logo and wordmark"/>
<h2>HTML5</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Cascading_Style_Sheets">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/CSS3_logo_and_wordmark.svg/544px-CSS3_logo_and_wordmark.svg.png" alt="CSS3 logo and wordmark"/>
<h2>CSS3</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/JavaScript">
<img src="https://proxy.duckduckgo.com/iu/?u=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Fb%2Fba%2FJavascript_badge.svg%2F946px-Javascript_badge.svg.png&f=1" alt="JavaScript logo and wordmark"/>
<h2>JavaScript</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Cloud9_IDE">
<img src="https://proxy.duckduckgo.com/iu/?u=https%3A%2F%2Fpbs.twimg.com%2Fprofile_images%2F495211744633950209%2FCvjNepWX.png&f=1" alt="Cloud9 logo and wordmark"/>
<h2>Cloud9</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/Git">
<img src="https://proxy.duckduckgo.com/iu/?u=http%3A%2F%2Fipengineer.net%2Fwp-content%2Fuploads%2F2015%2F04%2Fgit-logo.jpg&f=1" alt="Git logo and wordmark" />
<h2>Git</h2>
</a>
</div>
<div class="card">
<a href="https://en.wikipedia.org/wiki/GitHub">
<img src="https://proxy.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.tutsplus.com%2Fnet%2Fuploads%2F2013%2F08%2Fgithub-collab-retina-preview.gif&f=1" alt="GitHub logo and wordmark" />
<h2>GitHub</h2>
</a>
</div>
</body>
</html>