-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSSBasics.html
More file actions
37 lines (31 loc) · 777 Bytes
/
Copy pathCSSBasics.html
File metadata and controls
37 lines (31 loc) · 777 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
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<style>
h1{
color: yellow;
}
#p1{
background-color: antiquewhite;
text-align: center;
}
.c1:hover{
color: blue;
}
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<!-- internal and external which placed 2nd will excuted -->
</head>
<body>
<h1>fvnmvds,</h1>
<h2 class="c1">ugwbfjnvlf,</h2>
<h3 class="c1">bjksdlvskjm</h3>
<h4 >bnklckbjnmz</h4>
<div class="c1">hfbknsma</div>
<p id="p1">kvdbjnlsmkl</p>
<p>jbnkafmcxs</p>
</body>
</html>