1
Fork 0

Add projects I'm proud of

This commit is contained in:
Hadeed 2023-09-25 03:20:13 +05:00
parent 62fd1110c6
commit ab5f8909af
2 changed files with 27 additions and 16 deletions

View file

@ -1,15 +1,23 @@
<html>
<head>
<title>Home - Hadeed Ahmad</title>
<link rel="stylesheet" href="styles.css">
<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=Roboto+Mono&display=swap" rel="stylesheet">
</head>
<body>
<img src="profile.png" alt="My picture">
<p>Welcome to my website!</p>
<p>There's not much right now, but soon this will be quite nice :&#41;</p>
<p>Check out my projects <a href="http://git.hadeedahmad.xyz">here.</a></p>
</body>
<head>
<title>Home - Hadeed Ahmad</title>
<link rel="stylesheet" href="styles.css">
<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=Roboto+Mono&display=swap" rel="stylesheet">
</head>
<body>
<div id="header">
<img src="profile.png" alt="My picture">
<p>Welcome to my website! There's not much right now, but soon this
will be quite nice :&#41;</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>

View file

@ -1,14 +1,17 @@
body {
text-align: center;
background-color: #8cbfc5;
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 */
/* TODO: make responsive */