-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (69 loc) · 1.62 KB
/
Copy pathindex.html
File metadata and controls
81 lines (69 loc) · 1.62 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
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shark Tees - Contact</title>
<style>
body {
margin: 0;
padding: 0;
background: #f5f5f5;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
height: 100vh;
overflow: hidden; /* NO SCROLLING */
}
.top-section {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.logo img {
height: 350px; /* Reduced so it fits */
}
.lower-section {
width: 100%;
background: #e0e0e0;
padding: 50px 0;
text-align: center;
}
.contact {
font-size: 18px;
color: #333;
line-height: 1.6;
}
.coming-soon {
margin-top: 20px;
font-size: 25px;
font-weight: lighter;
color: #333;
}
hr {
width: 100%;
border: 1px solid #333;
margin: 0;
}
</style>
</head>
<body>
<div class="top-section">
<div class="logo">
<img src="logo.png" alt="Shark Tees Logo">
</div>
<div class="coming-soon">Coming Soon</div>
</div>
<hr>
<div class="lower-section">
<div class="contact">
<div><strong>Contact Us</strong></div>
<div>Email: <a href="mailto:thesharktees@gmail.com">thesharktees@gmail.com</a></div>
<div>Phone: <a href="tel:+918553617065">+91 8553617065</a></div>
<div><a href="https://www.instagram.com/thesharktees/" target="_blank">Instagram</a></div>
</div>
</div>
</body>
</html>