-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcssintro.htm
More file actions
46 lines (43 loc) · 1.24 KB
/
cssintro.htm
File metadata and controls
46 lines (43 loc) · 1.24 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
45
46
<!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; background-image: url(AIRTELM.png)}
ul {color: rgb(255, 0, 21);}
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">
<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>
<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.w3schools.com" target="_blank">This is a link</a>
</body>
</html>