-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (71 loc) · 2.6 KB
/
Copy pathindex.html
File metadata and controls
76 lines (71 loc) · 2.6 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!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" />
<title>Colors</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="header">
<div class="logo_box">
<ion-icon name="color-palette-outline"></ion-icon>
</div>
<nav class="nav">
<a class="links" href="index.html">Home</a>
<a class="links" href="color wheel.html">Color Wheel</a>
<a class="links" href="rainbows.html">Rainbows and More</a>
<a class="links" href="represent you.html">How Colors Represent You</a>
<a class="links" href="contact us.html">Contact Us</a>
<a class="links" href="developer.html">About Me</a>
</nav>
</header>
<main>
<section class="grey2">
<br /><br /><br /><br />
<span class="colors">Live Life in Color</span>
</section>
<br /><br /><br />
<section class="white">
<img
class="fit"
src="https://images.pexels.com/photos/3906333/pexels-photo-3906333.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt="holi"
/>
<div class="set_things">
<div class="things_SET">
<p class="another_grey">
Holi is a Hindu tradition celebrated in spring. It's also known as
the Festival of Spring, the Festival of Colors, and the Festival
of Love. You throw colored powder called gulal at people, so it is
very messy. Even though it is an Ancient Indian religon, so other
than India and Nepal, it has spread to other countries such as
Jamaica, Fiji, Malaysia, Singapore, the United Kingdom, the United
States, Canada, and Australia.
</p>
</div>
<div>
<br /><br /><br /><br /><br /><br /><br />
</div class="padding">
<span
><i class="another_grey"
>To learn more about Holi, go to
<a href="https://en.wikipedia.org/wiki/Holi"
>Holi - Wikipedia</a
></i
></span
>
</div>
</section>
</main>
<script
type="module"
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"
></script>
</body>
</html>