-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
95 lines (81 loc) · 3.04 KB
/
about.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<title>CandyLight About</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="about.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="myscript.js"></script>
</head>
<header>
<section class="flex">
<input type="checkbox" name="" id="toggler">
<label for="toggler" class="fas fa-bars"></label>
<a href="#" class="logo">CandyLight</a>
<nav class="navbar">
<a href="home.html">homepage</a>
<a href="winter.html">products</a>
<a href="contact.html">contact</a>
<a href="about.html">about</a>
<a href="review.html">reviews</a>
</nav>
<div class="icons">
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-shopping-cart"></a>
<a href="survey.html" class="fas fa-gift"></a>
</div>
</section>
</header>
<div class="banner-container">
<section class="banner"></section>
</div>
<body>
<h1 class="about"> <span> about </span> us </h1>
<div class="content">
<h3>why choose us?</h3>
<p>If you are looking for a fun and adorable way to brighten up your day, you will love our cute shaped candles.
Our candles are made with natural soy wax and premium fragrance oils, and they come in various shapes and
sizes, such as cakes, animals, and more. Our candles are not only cute, but also smell amazing-like cake!
They are perfect for adding some warmth and charm to your home, office, or any other space.</p>
<br>
<br>
</div>
<script src="myscript.js"></script>
</body>
<section class="footer">
<div class="footer-container">
<div class="box">
<h3>quick links</h3>
<a href="#">home</a>
<a href="#">about</a>
<a href="#">products</a>
<a href="#">review</a>
<a href="#">contact</a>
</div>
<div class="box">
<h3>extra links</h3>
<a href="#">my account</a>
<a href="#">my order</a>
<a href="#">my favorite</a>
</div>
<div class="box">
<h3>where</h3>
<a href="#">Türkiye</a>
<a href="#">USA</a>
<a href="#">japan</a>
<a href="#">france</a>
</div>
<div class="box">
<h3>contact</h3>
<a href="#">+123-456-7890</a>
<a href="#">[email protected]</a>
<a href="#">Japan, Tokyo - 400104</a>
<img src="payment.png" alt="">
</div>
</div>
<div class="credit"><span>CandyLight</span> | all rights reserved <span id="clock"></span></div>
</section>
</html>