-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1_index.html
More file actions
48 lines (47 loc) · 1.22 KB
/
1_index.html
File metadata and controls
48 lines (47 loc) · 1.22 KB
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
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- style sheet -->
<link rel="stylesheet" href="style.css">
<!-- three typees of style -->
</head>
<body>
<!-- for image -->
<!-- <h1>CSS</h1> -->
<center><img src="trav.png" height="110" alt="not found"></center>
<div class="container">
</div>
<!-- what is dom -->
<!-- document object modular like a tree -->
<!-- style a line -->
<!-- how to make id (unique) -->
<div id="CSS">CSS</div>
<div id="html" >html</div>
<section class="hell">hello</section>
<!-- styling -->`
<!-- #- target - id -->
<!-- .- target - class -->
<style>
#html{
background-color: purple;
}
.hell{
background-color: rgb(3, 24, 24);
/* coloring text */
color: white;
}
div >p{
color: blue;
background-color: red;
}
</style>
<h3>child selector</h3>
<div>
hallo
<p>hello only p will be colored </p>
</div>
</body>
</html>