-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntro.html
87 lines (87 loc) · 1.64 KB
/
Intro.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chelts</title>
<style>
header{
background-color:red;
}
h1{
color: blue;
text-align: center;
}
p{
font-style: italic;
color:green;
}
</style>
</head>
<header>
<ul>
<li><a href="About.html">Brio</a> </li>
</ul>
</header>
<body>
<h1>Python Programing</h1>
<h1>HTML&CSS</h1>
<h2>Python Programing</h2>
<h3>Python Programing</h3>
<h4>Python Programing</h4>
<h5>Python Programing</h5>
<h6 >Python Programing</h6>
<p>
My name is Brian Cheloti
</p>
<img src="Images/pp.png" width="100" title="python-logo" alt="Python">
<a href="https://jkuat.com" target=_blank" title="click here">Jkuat website </a>
<a href="About.html">Brian's About us page</a>
<hr>
<h3>Courses</h3>
<ul>
<li>GIS
<ol>
<li>1st year</li>
<li>2nd year</li>
<li>3rd year</li>
<li>4th year</li>
</ol>
</li>
<li>GEGIS</li>
<li>CIVIL</li>
</ul>
<h3>Course Description</h3>
<table border="1">
<tr>
<td>Course Name</td>
<td>Total Fees</td>
</tr>
<tr>
<td>GIS</td>
<td>180k</td>
</tr>
<tr>
<td>GEGIS</td>
<td>180k</td>
</tr>
<tr>
<td>CIVIL</td>
<td>240k</td>
</tr>
</table>
<div>
<h1>Inside Div</h1>
</div>
<footer>
<div>class="column"
<p>Any other business</p>
<ul>
<li>About me</li>
<li>Career</li>
<li>Contact Address</li>
</ul>
</div>
</footer>
<button name="button">Nibonyeze</button>
</body>
</html>