Skip to content

Commit

Permalink
Refactoring HTML.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehumphries committed Dec 21, 2021
1 parent c15cf40 commit c978378
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
Empty file added .nojekyll
Empty file.
Binary file added Impact.ttf
Binary file not shown.
32 changes: 22 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>YeahJenny</title>
</head>
<body style="font-family:Impact">
<h1>Jennay</h1>
<img src="sheep.jpg" alt="Cool sheep wearing fab sunglasses" width="200">
<p>Jenny</p>
<p>Aww yeah</p>
<p>Jennay yeah</p>
</body>
<head>
<meta charset="utf-8">
<title>YeahJenny</title>
<meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<style>
@font-face {
font-family: 'Impact';
src: local('Impact'), url('Impact.ttf');
}
body {
font-family: Impact;
}
</style>
</head>
<body>
<h1>Jennay</h1>
<img src="sheep.jpg" alt="Cool sheep wearing fab sunglasses" width="200">
<p>Jenny</p>
<p>Aww yeah</p>
<p>Jennay yeah</p>
</body>
</html>

0 comments on commit c978378

Please sign in to comment.