-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (93 loc) · 3.64 KB
/
index.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>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="icon.png" />
<title>Home page</title>
<link rel="stylesheet" href="css/styles.css" />
<link href="./smartmenus/sm-core-css.css" rel="stylesheet" />
<link href="./smartmenus/sm-blue.css" rel="stylesheet" />
<script
src="https://code.jquery.com/jquery-3.6.3.min.js"
integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU="
crossorigin="anonymous"
></script>
<script src="./smartmenus/jquery.smartmenus.min.js"></script>
<script src="js/custom_smart_menu.js"></script>
</head>
<body>
<header id="site-header">
<div class="main-menu">
<nav class="main-nav" role="navigation">
<h2 class="nav-brand"><a href="./">Phuong Anh Vu</a></h2>
<ul class="sm sm-blue" id="main-menu">
<li class="active"><a href="./">Home</a></li>
<li><a href="favorite_books.html">Favorite Books</a></li>
<li><a href="about_us.html">About Us</a></li>
<li>
<a href="#">Service</a>
<ul>
<li>
<a href="#">Building Website</a>
<ul>
<li><a href="#">Drupal 8</a></li>
<li><a href="#">Drupal 9</a></li>
<li><a href="#">Drupal 10</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="color_theory.html">Color Theory</a></li>
<li><a href="VietNam_scenic.html">Vietnam Scenic</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<div id="banner">
<h1>Home Page</h1>
</div>
<main id="main">
<h1>Phuong Anh Vu's Final Project</h1>
<section class="introduction">
For my final project in the 8-week WBG310 course, I developed a website
that showcases the knowledge and skills I acquired throughout the
program. This website has seven features, including:
<ul>
<li><b>Home page</b> provides an overview of this website.</li>
<li><b>About Us page</b> introduces me to the reader.</li>
<li>
<b>Favorite books page</b> displays my top three favorite books and
utilizes tabbed panels that I created in week 7.
</li>
<li>
<b>Color Theory page</b> allows users to select their favorite color
and displays information about their personality based on color
theory. This page uses animations and effects that I learned in week
4.
</li>
<li>
<b>Vietnam Scenic page</b> displays five images of the top five
beautiful places in Vietnam. Each thumbnail image links to a larger
version of the image and utilizes the techniques I learned in week
5.
</li>
<li>
<b>Contact Us page</b> includes a contact form that I created with
jQuery validation techniques in week 6.
</li>
<li>
<b>Service</b> a three-level drop-down menu that I learned from week
5.
</li>
</ul>
</section>
<p>
I sourced all the images used on the Vietnam Scenic page from
globalgrasshopper.com, under the Fair Use Act.
</p>
</main>
<div id="footer">Copyright © Phuong Anh Vu; 2023 All Rights Reserved.</div>
</body>
</html>