-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (82 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Azizi Yahya - Digital Resume</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="header">
<div class="logo">Azizi Yahya</div>
<button class="menu-toggle" onclick="toggleMenu()">☰</button>
<nav id="nav-menu">
<ul>
<li><a href="#hero">Home</a></li>
<li><a href="#about">About</a></li>
<!-- <li><a href="#experience">Experience</a></li> -->
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="hero" class="hero">
<div class="hero-content">
<div class="section__pic-container">
<img src="./assets/profile.jpg" alt="profile picture" />
</div>
<h1>Azizi Yahya</h1>
<p>Diploma IT Holder</p>
<a href="#contact" class="btn-main">Contact Me</a>
</div>
</section>
<div class="container">
<section id="about" class="section">
<h2>About Me</h2>
<div class="text-container">
<p>I am a technology enthusiast with a diploma in IT. Although I have a growing knowledge base, I am driven by a strong desire to continuously expand my professional expertise and skills.</p>
</div>
</section>
<!-- <section id="experience" class="section">
<h2>Work Experience</h2>
<div class="job">
<h3>Job Title</h3>
<p>Company Name | Date Range</p>
<p>Brief description of your role and achievements.</p>
</div>
</section> -->
<section id="education" class="section">
<h2>Education</h2>
<p><strong>Diploma Information Technology</strong>, <br><em>Politechnic Besut</em> — 2024</p>
<p><strong>Sijil Teknologi Mudah Alih</strong>, <br><em>Kolej Komuniti Kuala Pilah</em> - (transferred to higher education)</p>
<p><strong>MUET BAND 3</strong>, <br><em>Maahad Tarbiah Mardhiah</em> — 2018</p>
<p><strong>SPM</strong>, <br><em>Maahad Tarbiah Mardhiah</em> — 2017</p>
</section>
<section id="skills" class="section">
<h2>Skills</h2>
<ul class="skills-list">
<li><strong>Software Development:</strong> <br>Intermediate <br><a href="dev-projects.html" class="skill-link">Learn More</a></li>
<li><strong>Computer Technician:</strong> <br>Advanced <br><a href="comp-skills.html" class="skill-link">Learn More</a></li>
<li><strong>Web Development:</strong> <br>Intermediate</li>
<li><strong>Content Creation:</strong> <br>Beginner</li>
<li><strong>Video Editing:</strong> <br>Beginner</li>
</ul>
<div class="intro-container">
<p class="section-intro"><a href="skills.html">More in-detail Skills</a></p>
</div>
</section>
<section id="contact" class="section">
<h2>Contact Information</h2>
<p>Email : <a href="mailto:nikazizicareer@gmail.com">nikazizicareer@gmail.com</a></p>
<p>LinkedIn : <a href="https://www.linkedin.com/in/nik-azizi-nik-yahya-666994216/" target="_blank">linkedin.com/in/nik-azizi-nik-yahya-666994216/</a>
</p>
</section>
</div>
<footer class="footer">
© 2024 My Computer Setup | <a href='https://aziziyahya.github.io/' class='text-blue'>Social Media</a>
</footer>
<button class="back-to-top" onclick="scrollToTop()">↑</button>
<script src="script.js"></script>
</body>
</html>