Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 20 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- TODO: change the title tag - this is the name of the tab title -->
<!-- TODO: try adding a favicon -->
<title>My Profile</title>
<script src="https://kit.fontawesome.com/a86c93a2cb.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<script
src="https://kit.fontawesome.com/a86c93a2cb.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="card-white">
<!-- TODO: change the name and subtitle below -->
<h1>Hello I'm [edit your name here]</h1>
<h2>[Edit your subtitle]</h2>
<img src="images/github-icon.webp" alt="Profile Picture of Aaron Lambley" width="200px" height="200px" class="img-circle">
<img
src="images/github-icon.webp"
alt="Profile Picture of Aaron Lambley"
width="200px"
height="200px"
class="img-circle"
/>
<h3>^ change the image above ^</h3>
<p>
Write something about yourself
</p>
<p>Write something about yourself</p>
<!-- TODO: update the email below - think about how the email link operate. Does it open in the same or new tab? -->
<a href="mailto:test@test.com" class="btn-blue">Contact Me</a>
<a href="mailto:@test.com" class="btn-blue">Contact Me</a>
</div>
<div class="card-white">
<h3>Follow Me</h3>
Expand All @@ -35,7 +43,8 @@ <h3>Follow Me</h3>
</li>
<li>
<a href="https://www.instagram.com/maya_the_collie_cross/">
<i class="fa-brands fa-instagram icon-larger"></i></a> *
<i class="fa-brands fa-instagram icon-larger"></i
></a>
</li>
</ul>
</div>
Expand Down
3 changes: 3 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* Fonts */
/* add new fonts from Google Fonts: https://fonts.google.com */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,700;1,400&display=swap');

Expand All @@ -7,6 +8,8 @@
width: 700px;
}

/* basic media queries for responsiveness */
/* read more here: https://www.w3schools.com/howto/howto_css_media_query_breakpoints.asp */
@media (max-width: 960px) {
.container {
width: 700px;
Expand Down
Loading