-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
191 lines (179 loc) · 7.96 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Adam Faasil">
<meta name="description" content="This page contains all the things I am working on as a Developer.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/@material/web@latest/material.css">
<link rel="icon" href="images/icon.png" type="image/x-icon">
<link rel="stylesheet" href="css/style.css" type="text/css">
<script type="importmap">
{
"imports": {
"@material/web/": "https://esm.run/@material/web/"
}
}
</script>
<script type="module">
import '@material/web/all.js';
import {styles as typescaleStyles} from '@material/web/typography/md-typescale-styles.js';
document.adoptedStyleSheets.push(typescaleStyles.styleSheet);
</script>
</head>
<body>
<!-- Main section -->
<main>
<!-- Splash Screen -->
<div id="splash-screen">
<h1>Welcome to My Portfolio</h1>
<label>
<md-circular-progress indeterminate></md-circular-progress>
</label>
</div>
<div class="hero" id="hero">
<!-- Dark Mode Toggle Switch -->
<div class="dark-mode-toggle" id="dark-mode-toggle">
<input type="checkbox" id="dark-mode-switch">
<label for="dark-mode-switch">
<span class="material-icons" id="toggle-icon">dark_mode</span>
</label>
</div>
<!-- Navigation Bar -->
<nav class="navbar" id="navbar">
<a class="tab active" href="#home">Home</a>
<a class="tab" href="#about">About</a>
<a class="tab" href="#skills">Skills</a>
<a class="tab" href="#projects">Projects</a>
<a class="tab" href="#contact">Contact</a>
</nav>
</div>
<!-- Home Section (Logo and Introduction) -->
<section id="home">
<div class="home-content">
<img src="/images/logo.png" alt="Logo" id="logo">
<div id="home-content-textbox">
<h1>Welcome to My Website</h1>
<p>My Portfolio<br>
As a 20-year-old developer, I am passionate about coding and eager to learn. I’m driven to explore
different languages, frameworks, and tools, tackling challenges and growing with each experience.
My adaptability and creativity bring a fresh perspective to any team, and I’m committed to continuous
learning and making a meaningful impact in the tech world.</p><br>
<p>Explore my services and get to know me better!</p>
</div>
</div>
</section>
<!-- About Section -->
<section id="about">
<div class="about-content">
<h2>About</h2>
<p>Coming soon!</p>
</div>
</section>
<!-- Skills Section -->
<section id="skills">
<div class="skill-container">
<h1>Skills</h1>
<!-- Programming Skills Scrollable Section -->
<h2>Programming Skills</h2>
<div class="skills-scrollbar">
<div class="skills-scroll-wrapper">
<div class="scroll-item">
<div class="skill-name">C</div>
<div class="progress">
<div class="progress-bar c" style="width: 80%;"></div>
</div>
</div>
<div class="scroll-item">
<div class="skill-name">C#</div>
<div class="progress">
<div class="progress-bar csharp" style="width: 70%;"></div>
</div>
</div>
<div class="scroll-item">
<div class="skill-name">CSS</div>
<div class="progress">
<div class="progress-bar css" style="width: 85%;"></div>
</div>
</div>
<div class="scroll-item">
<div class="skill-name">HTML</div>
<div class="progress">
<div class="progress-bar html" style="width: 65%;"></div>
</div>
</div>
<div class="scroll-item">
<div class="skill-name">JavaScript</div>
<div class="progress">
<div class="progress-bar javascript" style="width: 15%;"></div>
</div>
</div>
<!-- Add more skills as needed -->
</div>
</div>
<!-- Non-scrollable Skills Section (Soft Skills, Tools & Technologies) -->
<div class="skill-grid">
<div class="skill-box">
<div class="skill-box-content">
<h3>Soft Skills</h3>
<ul>
<li>Troubleshooting</li>
<li>Communication</li>
<li>Quick Learning</li>
<li>Problem Solving</li>
<li>Time Management</li>
<li>Teamwork & Leadership</li>
<li>Hardware & Software Installation</li>
<li>Basic Knowledge on Network & System Administration</li>
</ul>
</div>
</div>
<div class="skill-box">
<div class="skill-box-content">
<h3>Tools & Technologies</h3>
<ul>
<li>Microsoft Business Applications</li>
<li>Google Suite</li>
<li>Adobe Cloud</li>
<li>Git</li>
<li>Figma</li>
<li>Linux</li>
<li>Windows</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects">
<div class="projects-content">
<h2>Projects</h2>
<p>Coming Soon!</p>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<div>
<h2>Contact</h2>
<p>Provide your contact information here.</p>
</div>
</section>
</main>
<!-- Linking the JavaScript file -->
<script src="js/style.js" defer></script>
</body>
<footer>
<div class="footer-content">
<p>© 2024 Adam Faasil. All Rights Reserved.</p>
<ul class="social-links">
<li><a href="https://github.com/adamfaasil" target="_blank">GitHub</a></li>
<li><a href="https://www.linkedin.com/in/adam-faasil-560a7b218/" target="_blank">LinkedIn</a></li>
</ul>
</div>
</footer>
</html>