-
Notifications
You must be signed in to change notification settings - Fork 0
/
index 14 May.html
48 lines (41 loc) · 1.35 KB
/
index 14 May.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
<!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">
<link rel="stylesheet" href="css/styles.css">
</style>
<title>My first site</title>
</head>
<body>
<h1 class="headerone">Hello World</h1>
<h2>Welcome to my site!</h2>
<!-- image of a duck -->
<img src="duck.jpg" width="200px" class="image">
<p id="mainpara" class="">
I am currently learning to code with <a class="link" 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...
<ol>
<li>HTML is cool</li>
<li>CSS is cooler</li>
<li>JS is the best</li>
</ol>
</p>
<h2><em>What do you need to create a website?</em></h2>
<p>
Not much!
<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>
</p>
<br>
<p>
Follow my progress on <a href="www.github.com">github</a>
</p>
</body>
</html>