<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<a href="https://github.com/HIMED-DEV" target="_blank">
<img class="logo" src="./assets/Adobe Express - file.png" alt="Logo">
</a>
<nav>
<div>
<a href="#home">
<h4>Home</h4>
</a>
<a href="#about">
<h4>About</h4>
</a>
<a href="#projects">
<h4>Projects</h4>
</a>
<a href="#contact">
<h4>Contact Me</h4>
</a>
</div>
</nav>
</header>
<main>
<section id="home">
<div class="hero-content">
<h1>Hello!</h1>
<h2>My name is Ibrahim Abdulhameed</h2>
<p>I am a Developer / Designer</p>
</div>
</section>
</main>
</body>
</html>
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
font-family:'Montserrat', sans-serif;
}
html{
scroll-behavior: smooth;
}
body {
background-color: #0b1120;
color: white;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 5%;
background-image: linear-gradient(rgba(11, 17, 32, 0.6), rgba(11, 17, 32, 0.6)), url('./assets/jeremy-bishop-G9i_plbfDgk-unsplash.jpg');
background-size: cover;
background-position: center;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
width: 120px;
height: auto;
}
nav>div {
display: flex;
gap: 30px;
align-items: center;
}
nav>div>a {
text-decoration: none;
color: white;
}
nav>div>a>h4 {
transition: 0.4s;
}
nav>div>a:hover>h4 {
color: #3bb4f2;
}
#home{
background-image: url(./assets/ales-nesetril-Im7lZjxeLhg-unsplash.jpg);
background-position:center;
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
}
Hey everyone,
Iβve recently started learning HTML and CSS on freeCodeCamp and decided to build my first portfolio website. Iβm still a beginner, but I tried to apply what Iβve been learning instead of just following tutorials.
Iβd really appreciate any feedback β especially on the design, layout, and code structure. I want to improve and make it look more professional over time.
Also, if thereβs anything I should focus on next or improve, please let me know ![]()
Thanks a lot!