-
Notifications
You must be signed in to change notification settings - Fork 0
/
CSS.html
33 lines (30 loc) · 912 Bytes
/
CSS.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
<!DOCTYPE html>
<html lang="en">
<!----Internal CSS can be used in HTML using style tags-->
<head>
<style>
font-size{font-size:large}
font-family{font: 1em sans-serif;}
h1{color: blueviolet;}
background-color{background-color: bisque;}
</style>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<link>
<h1>
UCP CLOSE
</h1>
<p>
My Name is Osama.
</p>
<!----Inline in CSS can be used in HTML using style tags-->
<h1 style="font-style: italic;">UCP</h1>
<h1 style="color: blue;">BigApple</h1>
<p style="font-size:70px;">University of Central Punjab</p>
<!----External CSS can be used in HTML using by linking the CSS files-->
<link rel="stylesheet" href="style.css"></link>
</body>
</html>