-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (105 loc) · 3.75 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
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
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Justin Liao - Home</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="Assets/media/profiles/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" class="active">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">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" class="active">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">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="home-intro">
<div class="carousel-container">
<div class="carousel">
<!-- Images -->
<img src="Assets/media/profiles/profile.jpg" alt="Image 1" class="carousel-image active">
<img src="Assets/media/profiles/third.JPG" alt="Image 2" class="carousel-image">
<img src="Assets/media/profiles/second.jpg" alt="Image 3" class="carousel-image">
</div>
<div class="carousel-buttons">
<button id="prev-button">
<i class="fas fa-chevron-left"></i>
</button>
<button id="next-button">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
<div class="intro-text">
<h1>Welcome to the Liaoniverse!</h1>
<p>
Howdy, it's Justin Liao! I'm a <strong>design engineer / entrepreneur</strong> with passion in web development and artificial intelligence. Whether it's my projects, interests, or activities, it all comes back to my values: <strong>Self-belief, Perseverance, Creativity, and Impact.</strong>
</p>
<p>
<em>“I defy the odds.” - Justin Liao</em>
</p>
</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>