-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 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
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
<title>Trace Fashion Backers</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous" />
<style>
body { min-height: 100vh; background: linear-gradient(to bottom, #efdce4 0%,#ffffff 100%); }
h1 { text-align: center; padding-top: 3rem; }
#content { display: flex; flex-wrap: wrap; }
img { margin: 10px; width: 5rem; height: 5rem; }
footer { font-size: 0.8rem; width: 100%; height: 60px; line-height: 60px; color: #555; }
footer a { text-decoration: underline; color: #555; }
footer .container { padding-right: 10vw; padding-left: 10vw; }
</style>
</head>
<body>
<div class="container">
<h1>Thanks to our wonderful backers!</h1>
<div id="content"></div>
</div>
<footer>
<div class="container">
© Trace Fashion, LLC
| <a href="https://www.tracefashion.co/">Home</a>
| <a href="https://www.tracefashion.co/contact/">Contact</a>
</div>
</footer>
<script src="common.js"></script>
<script src="index.js"></script>
</body>
</html>