-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
93 lines (85 loc) · 2.92 KB
/
shop.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
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
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
/>
<link rel="stylesheet" href="styles.css" />
<title>Document</title>
</head>
<body>
<!--HEADER------------------------------------------>
<header>
<div class="logo-text">
<h1><span>FANCY</span>NAME</h1>
</div>
<div class="nav-div">
<ul class="nav-list">
<li><a href="index.html">HOME</a></li>
<li><a href="shop.html">SHOP</a></li>
<li><a href="aboutus.html">ABOUT US</a></li>
<li><a href="">CONTACT</a></li>
</ul>
</div>
</header>
<main>
<div class="front-container">
<div class="text-container">
<h1>Amazing shop without buttons <br>or anything.</h1>
<h3>No function, no whitespace, no grid, no nothing.<br>
Doesnt even look functional.
</h3>
<p>So just a page to show off some lowkey cool pictures</p>
</div>
<div class="img-container">
<img
src="images/photo-1579783902614-a3fb3927b6a5.avif"
alt="Painting of flowers"
/>
</div>
<div class="img-container">
<img
src="images/stories--BqB2zptPQo-unsplash.jpg"
alt="picture of hallway"
/>
</div>
<div class="img-container">
<img
src="images/christian-mackie-ub_6v_CHGKU-unsplash.jpg"
alt="picture of a painting of a raccoon "
/>
</div>
<!-- <div class="img-container">
<img
src="images/carlos-de-miguel-sAoFdGv6BWs-unsplash.jpg"
alt="picture of a old building"
/>
</div> -->
</div>
</main>
<!-- FOOTER ---------------------------------------------->
<footer>
<div class="footer-left">
<h4>Reach out to us</h4>
<p><i class="material-icons">alternate_email</i> fancyemail@mail.com</p>
<p><i class="material-icons">call</i> 920 40 300</p>
</div>
<div class="footer-right">
<h4>Find us here</h4>
<p>Los Angeles, CA</p>
<p>5th street, Winford Avenue 403</p>
<p>56900 California</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>
</body>
</html>