forked from MadullapalliSupriya/SVEC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyles.html
More file actions
39 lines (39 loc) · 1.12 KB
/
Styles.html
File metadata and controls
39 lines (39 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<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>
<style>
span {
background-color: #b93446;
color: #fff;
font-size: 60px;
font-family: Georgia, 'Times New Roman', Times, serif;
font-style: italic;
}
/* span,p { */
/* opacity: 0.1; */
/* } */
.info{
background-color: rgb(70, 152, 219);
}
#content1{
font-size: 50px;
background-color: tomato;
}
#info{
font-size: 80px;
}
</style>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1 style="background-color: rgb(196, 218, 169);color: rgb(185, 159, 159);">This is the Heading1</h1>
<h1 style="color: 155, 89, 182 ;">color</h1>
<span style="font-size: 100px;">Demo for CSS</span>
<h4 id ="content1">Heading 4</h4>
<p class="info" id="info">This context belongs to css tracker</p>
</body>
</html>