-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·32 lines (29 loc) · 890 Bytes
/
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
<!DOCTYPE html>
<html>
<h1>Hello World</h1>
<h2>Welcome to my page!</h2>
<img src="duck.jpg" alt= "image of a duck"width=250px height=250px>
<!-- image of a duck -->
<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 fab</li>
<li>CSS is cooler</li>
<li>JS is the fabulous</li>
</ol>
<b><i>What do you need to create a website?</i></b>
<br>
<br>
Not much!
<br>
<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>
Follow my progress on <a href="https://github.com/">github</a>
</html>