1
Fork 0

Hafsa's Redesign

This commit is contained in:
Hadeed 2023-08-21 23:05:30 +05:00
parent c250bdf00f
commit 75e2859e74
3 changed files with 22 additions and 2 deletions

View file

@ -17,6 +17,6 @@ jobs:
chmod 600 ~/.ssh/staging.key chmod 600 ~/.ssh/staging.key
shell: sh shell: sh
- name: Test SSH - name: Deploy
run: ssh -i ~/.ssh/staging.key -o StrictHostKeyChecking=no hadeed@hadeedahmad.xyz 'cd nginx/www; git pull' run: ssh -i ~/.ssh/staging.key -o StrictHostKeyChecking=no hadeed@hadeedahmad.xyz 'cd nginx/www; git pull'
shell: sh shell: sh

View file

@ -1,9 +1,15 @@
<html> <html>
<head> <head>
<title>Home - Hadeed Ahmad</title> <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> </head>
<body> <body>
<img src="https://avatars.githubusercontent.com/u/5730404" alt="My picture">
<p>Welcome to my website!</p> <p>Welcome to my website!</p>
<p>There's not much right now, but soon this will be quite nice.</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> </body>
</html> </html>

14
styles.css Normal file
View file

@ -0,0 +1,14 @@
body {
text-align: center;
background-color: #8cbfc5;
color: white;
margin-top: 3rem;
font-family: 'Roboto Mono', monospace, sans-serif;
}
img {
border-radius: 50%;
width: 200;
height: 200;
}
/* TODO: make responsive */