Add projects I'm proud of
This commit is contained in:
parent
62fd1110c6
commit
ab5f8909af
2 changed files with 27 additions and 16 deletions
14
index.html
14
index.html
|
@ -7,9 +7,17 @@
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div id="header">
|
||||||
<img src="profile.png" alt="My picture">
|
<img src="profile.png" alt="My picture">
|
||||||
<p>Welcome to my website!</p>
|
<p>Welcome to my website! There's not much right now, but soon this
|
||||||
<p>There's not much right now, but soon this will be quite nice :)</p>
|
will be quite nice :)</p>
|
||||||
<p>Check out my projects <a href="http://git.hadeedahmad.xyz">here.</a></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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
body {
|
body {
|
||||||
text-align: center;
|
background-color: #5c959c;
|
||||||
background-color: #8cbfc5;
|
|
||||||
color: white;
|
color: white;
|
||||||
margin-top: 3rem;
|
margin-top: 3rem;
|
||||||
font-family: 'Roboto Mono', monospace, sans-serif;
|
font-family: 'Roboto Mono', monospace, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#header {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
width: 200;
|
width: 200;
|
||||||
|
|
Loading…
Reference in a new issue