-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 1010 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
<!DOCTYPE html>
<html>
<head>
<title>My first webpage!</title>
<link href="css/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>My first webpage</h1>
<h2>Written with a little guidance from <em>Moringa School</em></h2>
<p>Hello World!</p>
<p>Welcome to my <strong>webpage</strong>!</p>
<p>Here are some things I'm going to learn about coding:</p>
<ol>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>And alot more!</li>
</ol>
<p>Check out <a href="http://moringaschool.com/">Moringa School</a>. It's a great place to learn web development skills!</p>
<p>Here is a link to my <a href="my-favorite-things.html">favorite things</a>.</p>
<img src="images/elephant.jpeg" alt="A photo of an elephant">
<p>Come along with me on this <strong>exciting journey</strong>, wont you! It will be a <em>fun ride</em></p>
</body>
</html>