-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (34 loc) · 1.48 KB
/
index.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
<!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, minimum-scale=1.0">
<title>Welcome | Trendy Threads</title>
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Welcome Page -->
<div id="bg"></div>
<div id="main">
<center>
<div id="login-container">
<div class="login-box">
<div id="welcome-text">
<p id="welcome">Welcome</p>
<p id="desc">
Our aim is to keep you updated with all the fashion trends coming in and to also help you in standing out from the crowd.
We do that by creating what is comfortable to the customers and sustainable for the environment.
</p>
<p id="desc">Our team has worked really hard and we'll be grateful in making a positive impact towards the community.</p>
</div>
<input type="button" class="btn" value="Enter site" onclick="change()">
</div>
</div>
</center>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src='script.js'></script>
</body>
</html>