-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_us.html
79 lines (79 loc) · 3.41 KB
/
about_us.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
<!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>About Us</title>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/about_us.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><a href="./">Home</a></li>
<li><a href="favorite_books.html">Favorite Books</a></li>
<li class="active"><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>About Us</h1>
</div>
<main id="main" class="main">
<h1>My Introduction</h1>
<section class="introduction about_me">
<div class="img">
<img src="images/PhuongAnhVu.jpg" />
</div>
<div class="description">
First and foremost, my name is Phuong Anh Vu, and I am 26 years old. I
was born in Vietnam and immigrated with my parents to the U.S. three
years ago. Currently, I live in Sacramento, which is the capital of
California. I have been studying Web Development and Administration at
DeVry University for 2 years and 3 months, pursuing a bachelor's
degree. I really enjoy studying at an online school and have gained a
lot of knowledge and new skills. Fortunately, I have maintained a 4.0
GPA at the online school, which provides me with an excellent
opportunity to apply for jobs after graduation. In my free time, I
work as a freelancer in Drupal CMS and have been doing so for four
years. Moreover, I am an avid learner and enjoy reading books to
expand my knowledge. In September, I will be graduating with honors
from DeVry University with a Bachelor's degree in Web Development and
Administration, a program that has equipped me with the skills and
knowledge necessary to succeed in my career.
</div>
</section>
</main>
<div id="footer">Copyright © Phuong Anh Vu; 2023 All Rights Reserved.</div>
</body>
</html>