Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lantechbd committed Sep 23, 2022
1 parent dfd3e12 commit bb023fa
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 1 deletion.
22 changes: 21 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,33 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kawser Portfolio</title>
<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=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>

<body>

<section class="top-banner">
<div class="half-width">
<h1>Welcome To </h1>
<h1><span class="kaws">Kawser Ahmed </span>World</h1>
<h3>Build Climber and Train Stopper</h3>
<p>You might saw me jumping, climbing buildings, and stopping trains. But nobody pays me a dime
for
hat work. That's why I am learning and mastering web development. I will not stop until I become the Web
Development Hero.</p>
<a class="link-button" href="www.lantechbd.com" target="_blank">Hire Me</a>
</div>
<div class="half">
<img src="images/my-bg.png" alt="kawserahmed">
</div>
</section>
</body>

</html>
41 changes: 41 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
body {
font-family: 'Poppins', sans-serif;
margin: 0;
}

h1 {
font-size: 50px;
}

.kaws {
color: orange;
}

section {
display: flex;
}

.half-width {
width: 50%;
padding-left: 10%;
}

.half img {
width: 80%;
}

.link-button {
background-image: linear-gradient(orange, tomato);
text-decoration: none;
padding: 10px 40px;
border-radius: 5px;
color: white;
font-weight: 700;
font-size: large;
}

.top-banner {
background-image: url(images/top-banner.png);
background-repeat: no-repeat;

}

0 comments on commit bb023fa

Please sign in to comment.