-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
367a11c
commit d55d511
Showing
9 changed files
with
64 additions
and
56 deletions.
There are no files selected for viewing
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
a { | ||
cursor: pointer; | ||
color: inherit; | ||
} | ||
|
||
a:hover, | ||
a:focus { | ||
color: red; | ||
text-decoration: none; | ||
} | ||
|
||
a:visited { | ||
color: purple; | ||
} | ||
|
||
a:visited:hover, | ||
a:visited:focus { | ||
color: blue; | ||
} | ||
|
||
a:active { | ||
color: green; | ||
} | ||
|
||
u:hover { | ||
color: green; | ||
} | ||
|
||
p span { | ||
text-decoration: underline; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Anta&display=swap'); | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="home.css"> | ||
|
||
<link rel="stylesheet" href="./assets/styles/style.css"> | ||
<link rel="stylesheet" href="./assets/styles/home.css"> | ||
<title>Document</title> | ||
</head> | ||
|
||
<body> | ||
Tribute page<br> | ||
Tribute page | ||
<div class="categories"> | ||
<img src="https://media.istockphoto.com/id/1337144146/vector/default-avatar-profile-icon-vector.jpg?s=612x612&w=0&k=20&c=BIbFwuv7FxTWvh5S3vB6bkT0Qv8Vn8N5Ffseq84ClGI=" style="border-color: rgb(255, 251, 0)"></image> | ||
<img src="https://media.istockphoto.com/id/1337144146/vector/default-avatar-profile-icon-vector.jpg?s=612x612&w=0&k=20&c=BIbFwuv7FxTWvh5S3vB6bkT0Qv8Vn8N5Ffseq84ClGI=" style="border-color: rgb(21, 255, 0)"></image> | ||
<img src="https://media.istockphoto.com/id/1337144146/vector/default-avatar-profile-icon-vector.jpg?s=612x612&w=0&k=20&c=BIbFwuv7FxTWvh5S3vB6bkT0Qv8Vn8N5Ffseq84ClGI=" style="border-color: rgb(0, 229, 255)"></image> | ||
<img src="https://media.istockphoto.com/id/1337144146/vector/default-avatar-profile-icon-vector.jpg?s=612x612&w=0&k=20&c=BIbFwuv7FxTWvh5S3vB6bkT0Qv8Vn8N5Ffseq84ClGI=" style="border-color: rgb(225, 0, 255)"></image> | ||
<img src="https://media.istockphoto.com/id/1337144146/vector/default-avatar-profile-icon-vector.jpg?s=612x612&w=0&k=20&c=BIbFwuv7FxTWvh5S3vB6bkT0Qv8Vn8N5Ffseq84ClGI=" style="border-color: rgb(255, 0, 0)"></image> | ||
|
||
<img src="./assets/images/icons/science.png" style="border-color: rgb(255, 251, 0)" /> | ||
<img src="./assets/images/icons/sports.png" style="border-color: rgb(21, 255, 0)" /> | ||
<img src="./assets/images/icons/music.png" style="border-color: rgb(0, 229, 255)" /> | ||
<img src="./assets/images/icons/theatre-and-films.png" style="border-color: rgb(225, 0, 255)" /> | ||
<img src="https://media.istockphoto.com/id/1337144146/vector/default-avatar-profile-icon-vector.jpg?s=612x612&w=0&k=20&c=BIbFwuv7FxTWvh5S3vB6bkT0Qv8Vn8N5Ffseq84ClGI=" | ||
style="border-color: rgb(255, 0, 0)" /> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters