-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro-css.html
More file actions
27 lines (26 loc) · 744 Bytes
/
Copy pathintro-css.html
File metadata and controls
27 lines (26 loc) · 744 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Intro to css</title>
<style>
h1{
color: brown;
background-color: darkred;
}
#para{
font-weight: bold;
background-color: crimson;
}
</style>
<link rel="sytlesheet" href="css/css-intro-lec.css">
</head>
<body>
<h1 style="text-decoration: underline; background-color: aqua;" >Intro to css</h1>
<h1>sub-heading</h1>
<p id="para">This section will discuss CSS</p>
</body>
</html>