-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathintroduction_CSS.html
20 lines (20 loc) · 1.28 KB
/
introduction_CSS.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Introduction to CSS</title>
</head>
<body style="background-color: #D4C16A; margin-top: 5px;">
<img style="float: right; height: 275px; width: 25%;" src="images/css_img.jpg" alt="CSS image">
<div style="background-color: darkturquoise; text-align: center; color: azure; font-size: 200%;">
<h2 style="margin: 0px; text-align: center;">Introduction to</h2>
<h1 style="margin: 0px; text-align: center; font-size: 600%;">CSS</h1>
</div>
<p style="color: white; font-size: 140%;">
Cascading Style Sheets, fondly referred to as CSS, is a simply designed language intended to simplify the process of making web pages presentable. CSS allows you to apply styles to web pages. More importantly, CSS enables you to do this independent of the HTML that makes up each web page.
CSS is easy to learn and understood but it provides powerful control over the presentation of an HTML document. A CSS comprises of style rules that are interpreted by the browser and then applied to the corresponding elements in your document.
A style rule set consists of a selector and declaration block.
</p>
</body>
</html>