-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
105 lines (96 loc) · 3.46 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
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
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Justin Liao - Contact</title>
<link rel="stylesheet" href="style.css">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/a58ede48c2.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon for the browser tab -->
<link rel="icon" type="image/png" href="Falcon.jpg">
</head>
<body>
<!-- Logo at top left
<header>
<a href="index.html">
<img src=".jpg" alt="Your Logo" class="top-left-logo">
</a>
</header> -->
<!-- Navigation -->
<nav>
<a href="index.html"><div class="logo">Justin Liao</div></a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="interests.html">Interests</a></li>
<li><a href="activity.html">Activities</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
<div class="theme-switcher">
<button id="light-mode">Light Mode</button>
<button id="dark-mode">Dark Mode</button>
<button id="disco-mode">Disco Mode</button>
</div>
<div class="mobile-icons">
<!-- Single Theme Button (Mobile Only) -->
<div class="mobile-theme-btn">
<i class="fas fa-palette"></i>
</div>
<!-- Hamburger Button (Mobile Only) -->
<div class="mobile-hamburger">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<div class="mobile-nav-dropdown" id="mobile-nav-dropdown">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="interests.html">Interests</a></li>
<li><a href="activity.html">Activities</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</div>
<!-- 2) Mobile Theme Dropdown (slides down from top) -->
<div class="mobile-theme-dropdown" id="mobile-theme-dropdown">
<ul>
<li><button id="light-mobile">Light</button></li>
<li><button id="dark-mobile">Dark</button></li>
<li><button id="disco-mobile">Disco</button></li>
</ul>
</div>
<!-- Main Content -->
<main>
<section class="contact">
<h1>Contact Me</h1>
<p>
This page is under construction...
</p>
<form action="#" method="post">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
<div class="social-media">
<a href="https://linkedin.com/in/justin-liao23" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/Justin-Liao23-e" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://www.instagram.com/jt_eslec.23" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="mailto:justinliao3234@gmail.com" target="_blank"><i class="fas fa-envelope"></i></a>
</div>
</section>
</main>
<!-- Mute/Unmute Button (Visible only in Disco Mode) -->
<div id="music-control" style="display: none;">
<button id="mute-button">Mute Music</button>
</div>
<!-- Animated Shining Line -->
<div class="animated-line"></div>
<!-- Footer -->
<footer>
<p>© Justin Liao</p>
</footer>
<script src="script.js"></script>
</body>
</html>