forked from D-Kamunya/my-first-website-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (25 loc) · 1021 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (25 loc) · 1021 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>My first webpage</title>
<link href="css/styles.css" rel="stylesheet" type="text/css">
<link href="css/index.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>first web page</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 a lot more!</li>
</ol>
<!-- I am commenting this because I need pull request to be approved for fest so please approved my pull request -->
<p>Check out <a href="http://moringaschool.com/">Moringa School</a>. It's a great place to learn web development skills!</p>
<p><a href="./favourite-things.html">Here</a> is a my favourite things page</p>
<img src="images/b-ball.jpg" alt="A photo of a basket ball">
</body>
</html>