-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (89 loc) · 3.32 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
<!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="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css"/>
<link rel="stylesheet" href="style.css">
<link
rel="icon"
type="image/png"
href="./assets/favicon-32x32.png"
/>
</head>
<body>
<!-- Dark Mode Switch -->
<div class="theme-switch-wrapper">
<span class="toggle-icon" id="toggle-icon">
<span class="toggle-text">Light Mode</span>
<i class="fas fa-sun"></i>
</span>
<label class="theme-switch">
<input type="checkbox">
<div class="slider round"></div>
</label>
</div>
<!-- Navigation Section -->
<nav id="nav">
<a href="#home">HOME</a>
<a href="#about">ABOUT</a>
<a href="#button-section">BUTTONS</a>
<a href="#contact">CONTACT</a>
</nav>
<!-- Home Section -->
<section id="home">
<h1>Hi, I am Daniel Livingston</h1>
<h2>Welcome to my Website!</h2>
</section>
<!-- About Section -->
<section id="about">
<h1>I am good at:</h1>
<!-- Image 1 -->
<div class="about-container">
<div class="image-container">
<h2>Web Development</h2>
<img src="./Assets//undraw_proud_coder_light.svg" alt="Proud Coder" id="image1">
</div>
<!-- Image 2 -->
<div class="image-container">
<h2>Problem Solving</h2>
<img src="./Assets/undraw_feeling_proud_light.svg" alt="Feeling Proud" id="image2">
</div>
<!-- Image 3 -->
<div class="image-container">
<h2>Brainstorming</h2>
<img src="./Assets/undraw_conceptual_idea_light.svg" alt="Conceptual Idea" id="image3">
</div>
</div>
</section>
<!-- Projects Section -->
<section id="button-section">
<h1>Buttons</h1>
<div class="buttons">
<button class="primary">Primary</button>
<button class="secondary">Secondary</button>
<button class="primary" disabled>Disabled</button>
<button class="outline">Outline</button>
<button class="secondary 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. Doloribus blanditiis quia iusto corrupti culpa nobis esse natus praesentium? Repudiandae laborum obcaecati, asperiores provident eos alias suscipit omnis modi itaque illum.</p>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<h1>Contact Me:</h1>
<div class="social-icons">
<i class="fab fa-github"></i>
<i class="fab fa-linkedin-in"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-facebook-f"></i>
</div>
</section>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>