forked from cmsc389T-spring22/cmsc389T-web-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (65 loc) · 2.18 KB
/
Copy pathindex.html
File metadata and controls
77 lines (65 loc) · 2.18 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./css/style.css" />
<title>Ava Zhang</title>
<meta name="description" content="some desc">
</head>
<body>
<header class="main-header">
<br>
<h1 class="my-name my-name-large">Ava Zhang</h1>
</header>
<br><br><br>
<section class="content-section container">
<h2 class="section-header">About Me</h2>
<img class="about-prof-image" src="./assets/DSC_5558.JPG" height="200">
<p>
Hi! I am Ava Zhang, a UMD sophomore and computer science major! I'm also minoring in ACES.
</p>
<p>
I will be interning at Amazon Web Services this upcoming 2022 summer.
</p>
<p>
Aside from learning new programming, I'm interested in digital art and swimming!
</p>
<br><br><br><br><br><br><br><br><br><br><br>
</section>
<section class="content-section container">
<h2 class="section-header">Contact Information</h2>
<p>
Phone Number: 240-558-8337
</p>
<p>
Email: avazhang02@gmail.com
</p>
<br><br><br><br><br><br><br><br><br><br><br>
</section>
<br>
<footer class="main-footer">
<div class="container main-footer-container">
<ul class="nav footer-nav">
<li>
<!-- YOUR GITHUB -->
<a href="https://github.com/azhang-github/" target="_blank">
<img class="sm-logo" src="./assets/githubwhite.png" height="50" width="50">
</a>
</li>
<li>
<!-- YOUR LINKEDIN -->
<a href="https://www.linkedin.com/in/ava-zhang-5b6393202/" target="_blank">
<img class="sm-logo" src="./assets/linkedinwhite.png" height="50" width="50">
</a>
</li>
<li>
<a href="https://www.cs.umd.edu/" target="_blank">
<img src="./assets/umd-logo.png" height="34" width="195">
</a>
</li>
</ul>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script type="text/javascript" src="./js/script.js"></script>
</body>
</html>