-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstartpage.html
More file actions
44 lines (42 loc) · 1.13 KB
/
startpage.html
File metadata and controls
44 lines (42 loc) · 1.13 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<style>
body {background-color: powderblue;}
h1 {color: blue;}
p {color: red;}
</style>
<title>Document</title>
</head>
<body>
<p align="center"> <img src="MM.jpg" alt="MM.jpg" width="500" height="600" ></p>
<img src="https://www.must.ac.ug/wp-content/uploads/2018/08/must-site-logo11-1.png">
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<ul style="list-style-type:disc;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<ol type="I">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<ol type="a">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<a href="https://www.android.com">android</a>
<a href="https://www.facebook.com">facebook</a>
<i class="fab fa-android"></i>
<i class="fab fa-facebook"></i>
</body>
</html>