-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
953f2e0
commit aaa080f
Showing
3 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* Poppins font url */ | ||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); | ||
|
||
*{ | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: 'Poppins', sans-serif; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<!-- | ||
This is my portfolio. | ||
Copyright 2024 | ||
--> | ||
|
||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Mahib Abrar</title> | ||
|
||
<!-- Opengraph --> | ||
<meta property="og:title" content="Mahib Abrar"> | ||
<meta property="og:description" content="This is my portfolio"> | ||
<meta property="og:image" content="https://mahibabrar.me/v1/favicon-32x32.png"> | ||
<meta property="og:url" content="https://mahibabrar.me/"> | ||
<meta property="og:type" content="website"> | ||
|
||
<!-- Twitter --> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
<meta name="twitter:site" content="@mahibabrar"> | ||
<meta name="twitter:creator" content="@mahibabrar"> | ||
<meta name="twitter:title" content="Mahib Abrar"> | ||
<meta name="twitter:description" content="This is my portfolio"> | ||
<meta name="twitter:image" content="https://mahibabrar.me/v1/favicon-32x32.png"> | ||
|
||
<!-- Oembed --> | ||
<link rel="alternate" type="application/json+oembed" href="https://mahibabrar.me/oembed.json"> | ||
|
||
<!-- CSS --> | ||
<link rel="stylesheet" href="/css/style.css"> | ||
</head> | ||
<body> | ||
<!-- A Navbar for my portfolio --> | ||
<nav> | ||
<a href="#" class="brand">Mahib Abrar</a> | ||
</nav> | ||
|
||
<!-- A Hero Section --> | ||
<section class="hero"> | ||
<div class="container"> | ||
<h1>Hello, I'm Mahib Abrar</h1> | ||
<p>I'm a web developer</p> | ||
</div> | ||
</section> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"version": "1.0", | ||
"type": "rich", | ||
"title": "Mahib Abrar", | ||
"author_name": "Mahib Abrar", | ||
"author_url": "https://github.com/MahibAbrar222", | ||
"thumbnail_url": "", | ||
"thumbnail_width": 480, | ||
"thumbnail_height": 360, | ||
"html": "<iframe src=\"https://mahibabrar.me/\"></iframe>", | ||
"width": 640, | ||
"height": 480 | ||
} |