Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,17 @@ <h2 class="display-5>">Participants</h2>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">2</th>
<td><a href="https://github.com/adhamzarif" target="_blank">adhamzarif</a></td>
<td>https://adhamzarif.github.io/My-Website/</td>
<td>Yes</td>
<td>Yes</td>
</tr>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>
</html>
42 changes: 42 additions & 0 deletions projects/about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Adham Zarif</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<div class="main">
<div class="navbar">
<div class="icon">
</div>
<div class="menu">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li> <!-- Link to about.html -->
</ul>
</div>
</div>

<div class="content">
<h1>About Me</h1>
<div class="about-info">
</div>
</div>

<div class="social-icons">
<a href="https://www.facebook.com/adham.zarif.39/" target="_blank"><ion-icon name="logo-facebook"></ion-icon></a>
<a href="https://wa.me/01766555737" target="_blank"><ion-icon name="logo-whatsapp"></ion-icon></a>
<a href="zarifseam52@gmail.com" target="_blank"><ion-icon name="mail-outline"></ion-icon></a>
<a href="https://www.instagram.com/incident_curious/" target="_blank"><ion-icon name="logo-instagram"></ion-icon></a>
<a href="https://github.com/adhamzarif" target="_blank"><ion-icon name="logo-github"></ion-icon></a>
</div>

</div>

<script src="https://unpkg.com/ionicons@5.4.0/dist/ionicons.js"></script>

</body>
</html>
Binary file added projects/bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions projects/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adham Zarif</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<div class="main">
<div class="navbar">
<div class="icon">
<h2 class="logo">Hi There!!</h2>
</div>
<div class="menu">
<ul>
<li><a href="#">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</div>
</div>

<div class="content">
<h1>I'm Adham Zarif <br><span>A CS Student</span></h1>
<p class="par">Undergraduate Student <br>
Studying B.Sc [Engg.] in Department of CSE (Computer Science & Engineering) at United International University.</p>
</div>
</div>

<script src="https://unpkg.com/ionicons@5.4.0/dist/ionicons.js"></script>

</body>
</html>
113 changes: 113 additions & 0 deletions projects/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
background: linear-gradient(to top, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 50%), url('./bg.jpg');
background-position: center;
background-size: auto; /* Display the background image at its original size */
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}



.main {
width: 100%;
max-width: 1200px;
display: flex;
flex-direction: column;
align-items: center;
}

.navbar {
width: 100%;
max-width: 1200px;
height: 75px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
}

.icon, .menu {
height: 100%;
display: flex;
align-items: center;
}

.logo {
font-size: 45px; /* Increased font size */
font-family: Arial;
color: #ff7200;
margin-left: 20px; /* Added margin for spacing */
margin-top: 10px; /* Adjusted margin for positioning */
}

.menu ul {
list-style-type: none;
display: flex;
margin-right: 20px; /* Adjusted margin for spacing */
}

.menu ul li {
margin-left: 20px;
}

.menu ul li a {
text-decoration: none;
color: #fff;
font-weight: bold;
transition: color 0.4s ease;
font-size: 18px; /* Increased font size */
}

.menu ul li a:hover {
color: #ff7200;
}

.content {
width: 100%;
max-width: 1200px;
padding: 50px 20px;
text-align: center;
color: #fff;
}

.content h1 {
font-family: 'Times New Roman';
font-size: 50px;
letter-spacing: 2px;
}

.content span {
color: #ff7200;
font-size: 65px;
}

.content .par {
margin-top: 20px;
font-family: Arial;
font-size: 18px;
line-height: 1.6;
}

.social-icons {
margin-top: 20px;
}

.social-icons a {
text-decoration: none;
color: #fff;
font-size: 24px;
margin-right: 10px;
}

.social-icons a:hover {
color: #ff7200;
}