-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
125 lines (112 loc) · 5.37 KB
/
about.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
<!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="A professional portfolio showcasing skills, projects, certifications, and more.">
<meta name="keywords" content="Bazil, Suhail, Portfolio, Web Development, Projects, Skills">
<meta name="author" content="Bazil Suhail">
<title>Bazil Suhail</title>
<link rel="stylesheet" href="styles.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header class="navbar">
<a href="index.html" class="logo"><span>B</span>azil</a>
<ul class="navlist">
<li><a href="about.html" class="active">About</a></li>
<li><a href="coursework.html">CourseWork</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="right-empty-header">
English
<div class="menu-icon">
<div class="bar"></div>
</div>
</div>
</header>
<div class="spaceing"></div>
<!-- About Section -->
<section class="about" id="about">
<div class="about-img ">
<img src="Assets/logo.png" alt="logo Not Found" class="aboutHero">
</div>
<div class="about-content">
<h2 class="heading">About Me</h2>
<p>Creative full-stack developer with a knack for innovation. Skilled in modern web technologies and eager
to learn encourages me to deliver efficient and scalable solutions.</p>
<div class="about-btn">
<button class="active">Education</button>
<button >Technical Skills</button>
<button>Languages </button>
</div>
<div class="content-btn">
<div class="content" style="display: none;">
<div class="text-box">
<p>Bachelor's Degree in Computer Science</p>
<span>ITU Punjab Lahore, 202 - Currently in Semester 4</span>
</div>
<div class="text-box">
<p>Intermediate in Computer Science</p>
<span>Punjab group of Colleges Lahore - 2024</span>
</div>
<div class="text-box">
<p>Matriculation In Computer Science</p>
<span>Junior Campus Hight School</span>
</div>
</div>
<div class="content">
<div class="text-box">
<p>Full Stack Development</p>
<span>Building scalable web applications from front-end to back-end.</span>
</div>
<div class="text-box">
<p>UI/UX Design</p>
<span>Creating intuitive and engaging user interfaces with user-centered design
principles.</span>
</div>
<div class="text-box">
<p>Version Control & Collaboration</p>
<span>Proficient in Git, GitHub, and working with cross-functional teams.</span>
</div>
</div>
<div class="content" style="display: none;">
<div class="text-box">
<p><i class='bx bxl-html5'></i> HTML5 & CSS3</p>
<span>Building modern, responsive, and cross-browser compatible websites.</span>
</div>
<div class="text-box">
<p><i class='bx bxl-javascript'></i> JavaScript & React</p>
<span>Proficient in dynamic client-side scripting and React for building interactive UIs.</span>
</div>
<div class="text-box">
<p><i class='bx bxl-nodejs'></i> Node.js & Express</p>
<span>Developing server-side applications and APIs with efficient, scalable solutions.</span>
</div>
</div>
</div>
<!-- <div class="cvContent">
<a href="img/resume.pdf" target="_blank" class="btn d-CV">Download CV <i class='bx bx-download'></i></a>
</div>
-->
</div>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-left">
<p class="footer-name">Bazil Suhail</p>
<p class="footer-email"><a href="mailto:your.email@example.com">bazil1854@gmail.com</a></p>
</div>
<div class="footer-right">
<a href="https://www.youtube.com" aria-label="YouTube" class="social-icon bx bxl-youtube"></a>
<a href="https://www.linkedin.com" aria-label="LinkedIn" class="social-icon bx bxl-linkedin"></a>
<a href="https://www.instagram.com" aria-label="Instagram" class="social-icon bx bxl-instagram"></a>
<a href="https://github.com" aria-label="GitHub" class="social-icon bx bxl-github"></a>
</div>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>