Start new website
This commit is contained in:
parent
0e05560cb3
commit
ff076a1876
3 changed files with 13 additions and 39 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.vite/
|
34
index.html
34
index.html
|
@ -1,23 +1,13 @@
|
||||||
<html>
|
<!DOCTYPE html>
|
||||||
<head>
|
<html lang="en">
|
||||||
<title>Home - Hadeed Ahmad</title>
|
<head>
|
||||||
<link rel="stylesheet" href="styles.css">
|
<meta charset="UTF-8">
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<title>Home - Hadeed Ahmad</title>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
|
</head>
|
||||||
</head>
|
<body>
|
||||||
<body>
|
<h1>I am Hadeed Ahmad.</h1>
|
||||||
<div id="header">
|
<img src="profile.png" alt="Profile Picture" width="150">
|
||||||
<img src="profile.png" alt="My picture">
|
<p>Check out my <a href="https://git.hadeedahmad.xyz">Forgejo</a>.</p>
|
||||||
<p>Welcome to my website! There's not much right now, but soon this
|
</body>
|
||||||
will be quite nice :)</p>
|
|
||||||
</div>
|
|
||||||
<p>
|
|
||||||
Projects I'm most proud of:
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://git.hadeedahmad.xyz/hadeed/kilo">kilo</a> - A text editor.</li>
|
|
||||||
</ul>
|
|
||||||
You can find rest of what I'm up to <a href="https://git.hadeedahmad.xyz/">here</a>.
|
|
||||||
</p>
|
|
||||||
</body>
|
|
||||||
</html>
|
</html>
|
||||||
|
|
17
styles.css
17
styles.css
|
@ -1,17 +0,0 @@
|
||||||
body {
|
|
||||||
background-color: #5c959c;
|
|
||||||
color: white;
|
|
||||||
margin-top: 3rem;
|
|
||||||
font-family: 'Roboto Mono', monospace, sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
#header {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
border-radius: 50%;
|
|
||||||
width: 200;
|
|
||||||
height: 200;
|
|
||||||
}
|
|
||||||
/* TODO: make responsive */
|
|
Loading…
Reference in a new issue