Skip to content
Open
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
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!DOCTYPE html>
<!-- Issue: The lang attribute is missing -->
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Expand Down Expand Up @@ -29,7 +29,7 @@
<img src="assets/profile.png" class="profile-pic">

<!-- Issue: There is a typo in the heading -->
<h1>Jane Doe's Portfolo</h1>
<h1>Jane Doe's Portfolio</h1>

<p class="bio">
Welcome to my personal space! I'm a passionate developer who loves creating things for the web. This is a multi-page project designed to help new open-source contributors practice their skills. Explore the other pages to find more issues to fix!
Expand Down
5 changes: 4 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
/* --- Global Styles & Issues --- */

@import url('https://fonts.googleapis.com/css2?family=Epunda+Slab:ital,wght@0,300..900;1,300..900&display=swap');

body {
/* Issue: Change the default font */
font-family: serif;
font-family:"Epunda Slab",serif;
margin: 0;
padding: 0;
/* Issue: Change the page's background color */
Expand Down