-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1 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
<!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>
#chacha{
color: #69cf5d;
}
#chachi{
color: brown;
}
.a{
color: #3640a7;
}
</style>
</head>
<body>
<h1>hey</h1>
<h2>hey</h2>
<h3>hey</h3>
<h4>hey</h4>
<h5>hey</h5>
<h6>hey</h6>
<p>Lorem ipsum dolor sit, <br> amet consectetur adipisicing.</p>
<img src="https://images.unsplash.com/photo-1680422273918-5f1d443272a5?w=200&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwxMzR8fHxlbnwwfHx8fHw%3D" alt="">
<a href="https://unsplash.com/">Unsplash website</a>
<p id="chacha">Lorem ipsum dolor sit amet consectetur.</p>
<p id="chachi">Lorem ipsum dolor sit.</p>
<p class="a">Lorem, ipsum.</p>
<p class="a">Lorem, ipsum dolor.</p>
</body>
</html>