Hafsa's Redesign
This commit is contained in:
parent
c250bdf00f
commit
75e2859e74
3 changed files with 22 additions and 2 deletions
|
@ -17,6 +17,6 @@ jobs:
|
|||
chmod 600 ~/.ssh/staging.key
|
||||
shell: sh
|
||||
|
||||
- name: Test SSH
|
||||
- name: Deploy
|
||||
run: ssh -i ~/.ssh/staging.key -o StrictHostKeyChecking=no hadeed@hadeedahmad.xyz 'cd nginx/www; git pull'
|
||||
shell: sh
|
||||
|
|
|
@ -1,9 +1,15 @@
|
|||
<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="https://avatars.githubusercontent.com/u/5730404" alt="My picture">
|
||||
<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 :)</p>
|
||||
<p>Check out my projects <a href="http://git.hadeedahmad.xyz">here.</a></p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
14
styles.css
Normal file
14
styles.css
Normal 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 */
|
Loading…
Reference in a new issue