forked from 790hanu/Annex-qr-code-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcssintro.html
More file actions
21 lines (21 loc) · 764 Bytes
/
cssintro.html
File metadata and controls
21 lines (21 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CSS Tutorial</title>
<style>
p{
color:rgb(245, 184, 245);
background-color: seagreen !important;
}
</style>
<!-- <link rel="stylesheet" href="tut13.css"> to provide css externally -->
</head>
<body>
<h3>This is CSS Tutorial</h3>
<!-- <p style="color: red; background-color: yellow;">This tutorial will teach you everything you need to know about HTML/CSS</p> INLINE CSS-->
<p>This tutorial will teach you everything you need to know about HTML/CSS</p>
</body>
</html>