-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_01.html
More file actions
30 lines (24 loc) · 735 Bytes
/
index_01.html
File metadata and controls
30 lines (24 loc) · 735 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
<!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">
<!-- Linking .css file to style sheet -->
<link rel="stylesheet" href="/style.css">
<title>How to implement CSS Styling</title>
<!-- Styling with style tag -->
<style>
h3{
color: red;
}
</style>
</head>
<body>
<!-- 3 ways to implement CSS -->
<!-- Inline CSS -->
<h1 style="color:aquamarine; ">Welcome to Air Asia Academy!</h1>
<h3>Software Engineering </h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Beatae, fugit!</p>
</body>
</html>