-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (93 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Light-Dark Mode</title>
<link rel="icon" type="image/png" href="logo.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Toggle Switch for dark and light theme -->
<div class="theme-switch-wrapper">
<span id="toggle-icon">
<span class="toggle-text">Light Mode</span>
<i class="fas fa-sharp fa-solid fa-sun"></i>
</span>
<label class="theme-switch">
<input type="checkbox">
<div class="slider round"></div>
</label>
</div>
<!-- Navigation -->
<nav id="nav">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact US</a>
</nav>
<!-- Home Section -->
<section id="home">
<div class="title-group">
<h1>codingNode</h1>
<h2>Welcome to the Website!</h2>
</div>
</section>
<!-- About Section -->
<section id="about">
<h1>unDraw Illustrations</h1>
<div class="about-container">
<div class="image-container">
<h2>Educator</h2>
<img src="img/undraw_educator_light.svg" alt="educator" id="image1">
</div>
<div class="image-container">
<h2>Elements</h2>
<img src="img/undraw_elements_light.svg" alt="elements" id="image2">
</div>
<div class="image-container">
<h2>Engineering</h2>
<img src="img/undraw_engineering_team_light.svg" alt="engineering" id="image3">
</div>
<div class="image-container">
<h2>React</h2>
<img src="img/undraw_react_light.svg" alt="react" id="image4">
</div>
<div class="image-container">
<h2>Writer</h2>
<img src="img/undraw_writer_light.svg" alt="writer" id="image5">
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects">
<h1>Buttons</h1>
<div class="buttons">
<button class="primary">Primary</button>
<button class="secondary">Secondary</button>
<button class="primary" disabled>Disables</button>
<button class="outline">Outlined</button>
<button class="seondary outline">Alt Outline</button>
<button class="outline" disabled>Disabled</button>
</div>
<div class="text-box" id="text-box">
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Reprehenderit, consectetur, quia aut minima atque, ex a voluptatibus aspernatur ea error molestiae. Quasi excepturi maxime iste vitae sed quos quis sit!</p>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<h1>Contact Us!</h1>
<div class="social-icons">
<i class="fab fa-brands fa-github"></i>
<i class="fab fa-brands fa-instagram"></i>
<i class="fab fa-brands fa-square-facebook"></i>
<i class="fab fa-brands fa-square-snapchat"></i>
<i class="fab fa-brands fa-linkedin"></i>
<i class="fab fa-brands fa-youtube"></i>
</div>
</section>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>