-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
96 lines (96 loc) · 3.43 KB
/
about.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
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<title>Yuki Tea Shop - About</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<style>
#article1,
#article2,
#article3 {
border-style: dashed !important;
}
</style>
<script src="utility-functions.js"></script>
</head>
<body>
<header>
<nav class="nav nav-tabs nav-fill bg-dark">
<a class="nav-link fw-bold text-success" href="index.html">HOME</a>
<a class="nav-link fw-bold text-success" href="shop.html">SHOP</a>
<a
class="nav-link active bg-success text-warning fw-bold"
href="about.html"
>ABOUT</a
>
<a class="nav-link fw-bold text-success" href="contact.html">CONTACT</a>
<img
id="banner-img"
class="border-bottom border-top border-black border-5"
width="100%"
src="https://cdn.glitch.global/4422a7bc-d03c-4883-a000-b382559a1cbe/Yuki Tea Shop cropped.png?v=1725974868533"
alt="Yuki's Tea Shop Banner Image"
/>
</nav>
</header>
<main class="container">
<div>
<h2 class="m-2 text-center border border-3 border-success bg-warning">
ABOUT
</h2>
<p class="m-2 text-center border-3 border-success bg-warning">
This page is to better explain the features of my project.
</p>
<article id="article1" class="m-2 p-2 bg-white">
<h3 class="text-center">
Coding difference between Original And this Project
</h3>
<ul
class="list-group-numbered list-group border border-3 border-success"
>
<li class="list-group-item">
Changes to the theme of the website.
</li>
<li class="list-group-item">More fleshed out navigation bar.</li>
<li class="list-group-item">
Article tags seperating each section.
</li>
<li class="list-group-item">Added an About page.</li>
<li class="list-group-item">
Renamed gallery.html to shop.html and changed most of it.
</li>
</ul>
</article>
<article id="article2" class="m-2 p-2 bg-white">
<h3 class="text-center">Features</h3>
<ul
class="list-group-numbered list-group border border-3 border-success"
>
<li class="list-group-item">
Renewed nav bar design with mouse hover interaction and shows
which tab you are currently on.
</li>
<li class="list-group-item">Better implemented site map.</li>
<li class="list-group-item">
Shop page has interactive button that alerts you when you click
"add to cart".
</li>
<li class="list-group-item">Contacts page with rating system.</li>
<li class="list-group-item">Self made website banner.</li>
</ul>
</article>
</div>
</main>
<footer>
<div class="text-center">
<span class="fw-bold">Copyright 2024</span><br />
Website created by <span class="fst-italic">Yuki Konishi</span>
</div>
</footer>
</body>
</html>