-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (42 loc) · 2.16 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title> My First WebPage </title>
<meta charset="UTF-8"> <!-- extra information. standard for most languages -->
</head>
<body>
<h1> Hello world </h1>
<p> this is my passsion
i love the environment
i love animals </p>
<h2> introduction </h2>
<p> my name is brian mwirigi, im a computer science graduate </p>
<p> i love football, swimming and going for adventures </p>
<h3> research on bold and italic text </h3>
<p> how to <strong>train a dog </strong>
and improve animal relationship with humans </p> <!-- bolding using the strong element-->
<p> through <em> traning </em> one can aquire skills to
train a puppy to acquire certain characterisitics</p> <!--italicing words through use of em to implement emphasis -->
<p> identification of the <em><strong>job market</strong></em>
that will result in request from <b> more <i>clients </i> </b> who need <strong> dog services </strong> </p> <!-- bold and italics--> <!-- do not use <b> and <i> -->
<h4> list of dog breeds </h4>
<ul>
<li> german Sherpherd </li>
<li> caucasian sherperd </li>
<li> south african boerboel </li>
<li> bulldog </li>
</ul>
<ol>
<li> french bulldog </li>
<li> rottweiler </li>
<li> dobermann pincher </li>
</ol>
<h5> links and images </h5>
<h1> homepage link </h1>
<a href="https://www.google.com"> google Search </a> <!-- attributes of the anker tag --> <!-- absolute referencing(exact adressing)-->
<h6> </h6>
<img src="pages/images/dog.jpg">
<a href="pages/about.html"> about </a> <!-- relative referencing(inside my folder)-->
<h7> there is no h7!!! </h7> <!-- any data after this text will result in an error -->
</body>
</html>