-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (42 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My first site</title>
<link rel="stylesheet" type="text/css" href="./css/styles.css">
</head>
<body>
<div>
<h1>Hello World</h1>
<h2>Welcome to my site!</h2>
<!-- image of a duck -->
<img src="duck.jpg" width="200px">
</div>
<div class="contrast">
<p>I am currently learning to code with <a href="www.codefirstgirls.org.uk">Code First Girls</a>. Going over everything from how the
internet works, to creating websites and version control with git. A lot to cover in only 8 weeks!
Everyone should learn to code, here are some pretty good reasons why...</p>
<ol>
<li>HTML is cool</li>
<li id="lower">CSS is cooler</li>
<li id="lowest">JS is the best</li>
</ol>
</div>
<div>
<h2><em>What do you need to create a website?</em></h2>
<p>Not much!</p>
<ul>
<li>A computer (always a good start)</li>
<li>A text editor (I am using atom)</li>
<li>A web browser (I am using chrome)</li>
<li>Some HTML, CSS and JS files</li>
</ul>
</div>
<br>
<p>
Follow my progress on <a href="www.github.com">github</a>
</p>
</body>
</html>