-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlesson2.html
46 lines (36 loc) · 1.55 KB
/
lesson2.html
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
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Css Language</title>
<link rel="stylesheet" href="css/lesson1.css">
</head>
<body>
<!--header-->
<header>
<h1>CSS Language</h1>
</header>
<p>
<h1>What is CSS?</h1>
<h2>CSS (Cascading Style Sheets) is used to styles web pages. Cascading Style Sheets are fondly referred to as CSS.
The reason for using this is to simplify the process of making web pages presentable.
It allows you to apply styles on web pages. More importantly, it enables you to do this independently of the HTML that makes up each web page.</h2>
<h2><li>Basic Structure of an Css Page:
<br><img src="images/CSS.png" width="800" height="400" class="img">
</li></h2>
<h2><li>Learn more by watching this video ...</li></h2>
</p>
<div id="video-container">
<!-- استخدام إطار تكامل YouTube لتضمين الفيديو -->
<iframe width="800" height="400" src="https://www.youtube.com/embed/qyVkLebgfzY">
</iframe>
<br>
<br>
<br>
<a href="lesson3.html" id="download-button" target="_blank">Go To Next Lesson</a>
</div>
<footer>
</footer>
</body>
</html>