-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (54 loc) · 1.24 KB
/
index.html
File metadata and controls
55 lines (54 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mitti Mart | Crafted By Earth</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: url('background.jpg') no-repeat center center fixed;
background-size: cover;
color: #2e1f0f;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.logo {
width: 150px;
margin-bottom: 20px;
}
h1 {
font-size: 2.5rem;
margin: 0;
}
p {
font-size: 1.2rem;
margin-top: 8px;
background: rgba(255,255,255,0.7);
padding: 10px 20px;
border-radius: 10px;
}
.leaf {
position: absolute;
top: 20px;
right: 20px;
width: 60px;
animation: spin 6s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<img src="leaf.png" alt="leaf" class="leaf">
<img src="logo.png" alt="Mitti Mart Logo" class="logo">
<h1>Mitti Mart</h1>
<p>Crafted By Earth 🌎 Delivered with Care</p>
</body>
</html>