-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (47 loc) · 2.2 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
44
45
46
47
48
49
50
51
52
<!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, initial-scale=1">
<title>Space Coyote</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="spacecoyote.css">
<link rel="icon" href="./assets/favicon-16x16.png" type="image/gif" sizes="16x16">
</head>
<body>
<main>
<section class="text-center">
<div class="top">
<a class="logo" href=""><img class="img-fluid" src="assets/logo.png" alt=""></a>
<h1>experience Space Coyote</h1>
<p class="mt-3">Potent and delicious products delivered to you!</p>
<a href="https://buy.spacecoyote.org/" class="select-btn mt-xl-4">Buy Now</a>
</div>
</section>
<section>
<div class="mid">
<h2>Delivered Direct To You!</h2>
<p class="mt-5">Welcome to Space Coyote, where we guarantee a good time. Shop our epic lineup of
delicious products now.
</p>
<a href="https://buy.spacecoyote.org/" class="select-btn mt-4">Our Menu</a>
</div>
</section>
<section>
<picture>
<source media="(min-width:992px)" class="img-fluid" srcset="assets/banner-2.jpg">
<img src="assets/Bomber-2.jpg" class="img-fluid" alt="spacecoyote" style="width:auto;">
</picture>
<div class="bottom">
<a href="https://buy.spacecoyote.org/" class="select-btn">Shop now</a>
</div>
</section>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</body>
</html>