-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (67 loc) · 2.65 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Epilogue&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<header>
<div class="tab-container">
<a href="index.html" class="tab-link">Home</a>
<a href="blog.html" class="tab-link">Blog</a>
<a href="about.html" class="tab-link">About Me</a>
</div>
</header>
<section>
<div class="name">
<h2>Bruce Qu</h2>
<a href="https://www.ucla.edu/" style="color: white;">
<p> ★ University of California, Los Angeles</p>
</a>
<div class="contact-icons">
<a href="https://github.com/brucequz"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/bruce-qu-646182233/"><i class="fab fa-linkedin"></i></a>
<a href="mailto:brucequz@gmail.com"><i class="fas fa-envelope"></i></a>
</div>
<intro>Hello! I am a graduate student at UCLA studying Electrical Engineering.
I am fortunate to be advised by <a href="https://www.ee.ucla.edu/richard-wesel/" style="color: white;">
Dr. Richard Wesel</a> (UCLA), researching <span class="underscore">Channel Coding Theory.</span></intro>
</div>
<div class="paragraph">
<img src="images/headshot.jpg" alt="Image">
</div>
</section>
<section>
<div class="projects">
<h2>Project Gallery</h2>
<div class="container">
<div class="image-container">
<div class="image-wrapper">
<a href="https://github.com/brucequz/Veggie-Wars">
<img src="images/summer_map.png" alt="Image 1">
<div class="image-overlay">
<div class="overlay-text">
<div class="project-title">Veggie Wars</div>
<div class="project-description">A video game designed for capstone course at UCLA</div>
</div>
</div>
</a>
</div>
<div class="image-wrapper">
<a href="https://github.com/brucequz/OFDM_cpp">
<img src="images/bits_bytes.png" alt="Image 2">
<div class="image-overlay">
<div class="overlay-text">
<div class="project-title">OFDM</div>
<div class="project-description">A simplified implementation of Orthogonal Frequency Division Multiplexing (OFDM) System in C++</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>