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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
2 changes: 1 addition & 1 deletion 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
20 changes: 11 additions & 9 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,32 +1,34 @@

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
/* --- Global Styles & Issues --- */
body {
/* Issue: Change the default font */
font-family: serif;
font-family: "Pacifico",serif;
margin: 0;
padding: 0;
/* Issue: Change the page's background color */
background-color: #f4f4f4;
color: #333;
background-color: #060240;
color: #fada08;
}

.container {
width: 90%;
margin: 20px auto;
background-color: #fff;
background-color: #15d428;
/* Issues: Add padding, a border, rounded corners, a box-shadow, and a max-width */
/* hi */
}

a {
/* Issue: Remove the underline */
text-decoration: underline;
color: #007BFF;
color: #0971ef;
}

/* --- Header & Navigation Issues --- */
header {
background-color: #333;
color: white;
background-color: #dfe23a;
color: rgb(227, 28, 58);
}

nav ul {
Expand Down Expand Up @@ -89,8 +91,8 @@ form textarea {

form button {
/* Issue: Style this button to be more prominent */
background-color: #ddd;
border: 1px solid #ccc;
background-color: #d67835;
border: 1px solid #99f099;
padding: 10px 15px;
cursor: pointer;
}
Expand Down