-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
124 lines (107 loc) · 3.44 KB
/
404.html
File metadata and controls
124 lines (107 loc) · 3.44 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title> - Vivian Wu's Website</title>
<link rel="stylesheet" href="assets/css/styles.css">
<style>
@font-face {
font-family: 'MilkyNice-Clean';
src: url(assets/fonts/MilkyNice-Clean.ttf)
}
@font-face {
font-family: 'Evolve-Sans-Regular';
src: url(assets/fonts/AnyConv.com__MADE+Evolve+Sans+Regular+\(PERSONAL+USE\).ttf)
}
@font-face {
font-family: 'Evolve-Sans-Medium';
src: url(assets/fonts/AnyConv.com__MADE+Evolve+Sans+Medium+\(PERSONAL+USE\).ttf)
}
* {
font-family: 'Evolve-Sans-Medium';
}
.portfolio * {
font-family: inherit;
}
.pic-container {
display: grid;
grid-template-columns: repeat(6, 1fr);
align-items: stretch;
gap:5px;
background-color: gray;
}
.pic-container img {
max-width: 100%;
}
</style>
<script src="assets/javascript/jquery-2.2.0.min.js"></script>
<script src="assets/javascript/jquery.cycle2.min.js"></script>
<script src="assets/javascript/jquery.cycle2.center.js"></script>
<script src="assets/javascript/bootstrap/bootstrap.min.js"></script>
</head>
<style>
html,
body {
height: 100%;
}
#main-wrapper {
display: flex;
flex-direction: column;
min-height: 90%;
}
</style>
<body>
<nav class="navbar navbar-expand-lg navbar-light" style="background-color: rgb(253, 210, 155);">
<a class="navbar-brand" href="/"><img height="50" src="assets/images/site_logo.png" alt=""></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<ul class="navbar-nav ml-auto text-center">
<li class="ml-3">
<a style="color: rgb(239, 33, 95)" href="/about"> About</a>
</li>
<li class="ml-3">
<a style="color: rgb(239, 33, 95)" href="/portfolio"> Portfolio</a>
</li>
<li class="ml-3">
<a style="color: rgb(239, 33, 95)" href="/bakery"> Bakery</a>
</li>
<li class="ml-3">
<a style="color: rgb(239, 33, 95)" href="/contact"> Contact</a>
</li>
</ul>
</div>
</nav>
<div id="main-wrapper">
<article style="flex:1"><style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>
<div class="container">
<h1>404</h1>
<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>
</article>
<div class="footer text-center pb-1" style="background-color: rgb(253, 210, 155);color: rgb(239, 33, 95)">
<h4>Vivian Wu</h4>
<p>vjw2flower@gmail.com</p>
<p>(614) 301-0403</p>
<p>Powered By JW Automation Service</p>
</div>
</main>
</div>
</body>
</html>