-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·45 lines (33 loc) · 1.08 KB
/
index.html
File metadata and controls
executable file
·45 lines (33 loc) · 1.08 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Week 1 Task</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div>
<h1>Hello Universe!</h1>
<h2>Welcome to my site!</h2>
<img src="duck.jpg" alt="duck.jpg" width="200px">
</div>
<div>
<p>I am currently learning to code with <a href="https://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 class="contrast">
<h2><em>What do you need to create a website?</em></h2>
<ul>
<li>A computer<br>(always a good start)</li>
<li>A text editor<br>(I am using atom)</li>
<li>A web browser<br>(I am using chrome)</li>
<li>Some HTML, CSS and JS files</li>
</ul>
</div>
<p>Follow my progress on <a href="https://github.com/">github</a></p>
</body>