-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
133 lines (125 loc) · 5.8 KB
/
about.html
File metadata and controls
133 lines (125 loc) · 5.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="About me - Professional web developer portfolio">
<meta name="keywords" content="web developer, about, skills, experience">
<meta name="author" content="Your Name">
<title>About Me | Portfolio</title>
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<nav class="main-nav">
<div class="logo">
<h1>Portfolio</h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="survey.html">Survey</a></li>
</ul>
<button id="theme-toggle" class="theme-toggle">
<i class="fas fa-moon"></i>
</button>
</nav>
</header>
<main>
<section class="about-section">
<div class="container">
<h2>About Me</h2>
<div class="about-grid">
<div class="about-content">
<h3>My Story</h3>
<p>I am a passionate web developer with a strong foundation in HTML, CSS, and JavaScript. My journey in web development began [your story here]. I specialize in creating responsive, user-friendly websites that deliver exceptional user experiences.</p>
<h3>Skills</h3>
<div class="skills-list">
<h4>Technical Skills</h4>
<ul>
<li>HTML5 & CSS3</li>
<li>JavaScript (ES6+)</li>
<li>Responsive Web Design</li>
<li>Version Control (Git)</li>
<li>Web Accessibility</li>
</ul>
<h4>Soft Skills</h4>
<ul>
<li>Problem Solving</li>
<li>Team Collaboration</li>
<li>Communication</li>
<li>Time Management</li>
<li>Attention to Detail</li>
</ul>
</div>
</div>
<div class="about-image">
<img src="images/sadik.jpg" style="height: 150px; width: auto;" alt="Profile Picture">
<div class="experience">
<h3>Experience</h3>
<ul>
<li>
<h4>Web Developer</h4>
<p>Sadik Abrahman | 2025 - Present</p>
<ul>
<li>Developed responsive websites</li>
<li>Implemented modern design patterns</li>
<li>Optimized website performance</li>
</ul>
</li>
<li>
<h4>Junior Developer</h4>
<p>Sadik Abarhamn | 2024</p>
<ul>
<li>Created web applications</li>
<li>Collaborated with design team</li>
<li>Maintained code quality</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="education-section">
<div class="container">
<h3>Education</h3>
<div class="education-grid">
<div class="education-item">
<h4>Bachelor's Degree in Software Enginnering</h4>
<p>UDOM | 2023-2027</p>
<ul>
<li>Dean's List</li>
<li>Web Development Specialization</li>
</ul>
</div>
<div class="education-item">
<h4>Web Development Bootcamp</h4>
<p>Sadik Abrahman| 2025</p>
<ul>
<li>Full-stack Development</li>
<li>Project-based Learning</li>
<li>Industry Best Practices</li>
</ul>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<p>© 2025 Sadik Abrahman. All rights reserved.</p>
<div class="social-links">
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="#" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
</div>
</div>
</footer>
<script src="scripts/main.js"></script>
</body>
</html>