-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbakery.html
More file actions
137 lines (118 loc) · 4.23 KB
/
bakery.html
File metadata and controls
137 lines (118 loc) · 4.23 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
125
126
127
128
129
130
131
132
133
134
135
136
137
<!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>
.bakery-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
align-items: stretch;
gap: 3px;
margin-bottom: 20px;
}
.bakery-container img {
max-width: 100%;
}
</style>
<div class="container mt-3">
<div class="bakery-container">
<img src="assets/images/bakery/mint-cookie.png" alt="mint cookie">
<img src="assets/images/bakery/cake.png" alt="cake">
<img src="assets/images/bakery/cookie.png" alt="cookie">
</div>
<p style="color:#ef215f;font-family:'MilkyNice-Clean'">
I learned to bake starting from scratch from 2017 to current.
My bakery is called Vivian's Sweets.
I can make cupcakes, cookies, brownies, and cookie bars so far, I am still learning to bake different kinds of
cake,
including cheesecake.
If you want to buy from my bakery, you can go to the website to buy.
</p>
<button style="border:none; background-color: pink; display:block;margin: 0 auto; width:10%"
class="mb-1 btn btn-primary">
<a href="https://www.vivianwu.me/viviansweets/">Buy</a></button>
</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>