-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
36 lines (36 loc) · 1.47 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<style>
body {
background-color: rgb(200, 232, 240)
}
br {
display: block;
margin: 10px 0;
}
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Social Media</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="javascript/dropdown.js"></script>
<body>
<h1>Alan Zhou</h1>
<div class="dropdown">
<button onclick="dropdown()" class="dropbtn">Dropdown</button>
<div id="myDropdown" class="dropdown-content">
<a href="index.html#home">Home</a>
<a href="experience.html">Experience</a>
<a href="portfolio.html">Portfolio</a>
</div>
</div>
<h1 style="text-align: center;">Social Media</h1>
<p style="text-align: center;">Here are some links to my social media. Let's <b>connect!</b></p>
<a href="https://www.youtube.com/channel/UCRvZ-7-rjfziq7DV9wCJstQ" class="button">Alan's Side Projects</a><br>
<a href="https://www.behance.net/alandzhou" class="button">Behance</a><br>
<a href="https://github.com/alanreviews" class="button">GitHub</a><br>
<a href="https://www.linkedin.com/in/alan-d-zhou/" class="button">LinkedIn</a><br>
<a href="https://www.youtube.com/c/TheAlanReviews" class="button">The Alan Reviews</a><br>
</body>
</html>