-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
144 lines (121 loc) · 4.3 KB
/
home.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">\
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<title>TaraTea</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0px 0px;
background-image: url(photos/puli.jfif);
background-color: #000000;
color: #fcfbfb;
}
body {
background-image: url("photos/puli.jfif");
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
filter: brightness(0.9);
}
.header {
overflow: hidden;
background-color: rgba(170, 147, 85, 0.918);
margin-top: -18px;
}
.header a {
float: left;
color: white;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.header a.logo {
font-size: 25px;
font-weight: bold;
}
.header a:hover {
background-color: rgba(90, 82, 11, 0.795);
color: rgb(255, 255, 255);
}
.header a.active {
background-color: rgba(90, 82, 11, 0.795);
color: white;
}
.header-Right {
float: right;
}
section {
padding: 20px;
text-align: center;
}
footer {
text-align: center;
background-color: rgba(128, 112, 68, 0.918);
padding: 10px;
position: relative;
bottom: 0;
width: 100%;
}
h1 {
font-size: 48px;
color: #000000;
}
h2 {
font-size: 25px;
color: #000000;
}
</style>
</head>
<body>
<header>
<div class="header">
<div class="header-Left">
<a href="index.html" class="logo">
<img src="photos/logo.svg" alt="Logo" class="logo-img" style="height: 40px; vertical-align: middle;">
TaraTea
</a>
</div>
<div class="header-Right">
<a class="active" href="home.html">Home</a>
<a href="aboutus.html">About Us</a>
<a href="contactus.html">Contact Us</a>
<a href="product1.html">Products</a>
<a href="#" id="logout" onclick="logout()">Logout</a>
</div>
</div>
</header>
<body>
<header>
</header>
<div class="main-content">
<section>
<h1>TARA TEA!!</h1>
<img src="photos/coftea.jpeg" alt="A beautiful moment captured" style="max-width: 50%; height: auto; margin-top: 0px;">
<h2>Welcome to Tara Tea! Were excited to share our passion for premium teas with you. </h2>
<h2>At Tara Tea, we curate a selection of the finest blends from around the world, focusing on quality, sustainability, and flavor. Whether youre a seasoned tea connoisseur or just beginning your journey, we have something special for everyone.</h2>
<h2>Explore our diverse range of teas, from soothing herbal infusions to robust black and green teas. Each blend is crafted to provide a unique experience, promoting relaxation, wellness, and enjoyment. Join our community of tea lovers, discover brewing tips, and find the perfect tea for any occasion.
Sip, savor, and share the joy of tea with Tara Tea!</h2>
</section>
</div>
<footer class="footer">
© Copyright <strong><span>TaraTea</span></strong>. All Rights Reserved
</footer>
<script>
function logout() {
alert("You have been logged out!");
window.location.href = "index.html";
}
</script>
</body>
</body>
</html>