-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
69 lines (66 loc) · 2.83 KB
/
gallery.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
<!DOCTYPE html>
<html>
<title>Etch's Cafe</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="https://cdn0.iconfinder.com/data/icons/hipster-outline-2/60/007_-_Coffee_Cup-512.png">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-colors-2018.css">
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<style>
body, html {
height: 100%;
font-family: "Inconsolata", sans-serif;
}
.menu {
display: none;
}
</style>
<body>
<div class="w3-bottom">
<div class="w3-row w3-padding w3-black">
<div class="w3-col s3">
<a href="#" class="w3-button w3-block w3-ripple w3-indigo w3-border w3-border-black">HOME</a>
</div>
<div class="w3-col s3">
<a href="#about" class="w3-button w3-block w3-dark-grey w3-border w3-border-yellow">ABOUT</a>
</div>
<div class="w3-col s3">
<a href="#menu" class="w3-button w3-block w3-dark-grey w3-border w3-border-yellow">MENU</a>
</div>
<div class="w3-col s3">
<a href="#contact" class="w3-button w3-block w3-black w3-border w3-border-yellow">CONTACT</a>
</div>
<div class="w3-col s3">
<a href="#price" class="w3-button w3-block w3-black w3-border w3-border-yellow">PRICES & TIMES</a>
</div>
<div class="w3-col s3">
<a href="#tos" class="w3-button w3-block w3-black w3-border w3-border-yellow">TOS</a>
</div>
<div class="w3-col s3">
<a href="#faq" class="w3-button w3-block w3-black w3-border w3-border-yellow">FAQ</a>
</div>
<div class="w3-col s3">
<a href="#gallery" class="w3-button w3-block w3-black w3-border w3-border-yellow">GALLERY</a>
</div>
</div>
</div>
<div class="w3-2018-coconut-milk w3-grayscale w3-large">
</div>
<div class="w3-container" id="gallery" style="padding-bottom:32px;">
<div class="w3-content" style="max-width:700px">
<h5 class="w3-center w3-padding-48 w3-hover-grey"><span class="w3-tag w3-wide">GALLERY</span></h5>
<p> Here is my gallery of art I have created, please look through to see if I fit your art style before asking for a commission. Thanks! </p>
</div>
</div>
<footer class="w3-center w3-light-grey w3-padding-48 w3-large">
<a href="https://www.youtube.com/channel/UCIR8IQCNussEFitmLSsLckg">Thank you for looking. Use the link to my channel I don't use!</a>
<a href="#">Also check out my other website!</a>
<p>.</p>
</footer>
</body>
</html>