-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
5 changed files
with
233 additions
and
60 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,16 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<META CHARSET="UTF-8"> | ||
<title>My picture</title> | ||
</head> | ||
<body> | ||
<img src="20240420_115039.jpg" alt="my pic" width="500" height="600"> | ||
<br> | ||
<br> | ||
<br> | ||
<br> | ||
<div><a href="index.html">Back</a></div> | ||
<!-- this is a comment --> | ||
</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
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,102 @@ | ||
body { | ||
|
||
background-color: #f6f6df; | ||
font-family: sans-serif; | ||
margin-right: 35em; | ||
|
||
} | ||
|
||
h1 { | ||
|
||
font-weight: bold; | ||
font-size: 4em; | ||
font-style: bold; | ||
font-weight: 800; | ||
color: lightskyblue; | ||
|
||
} | ||
|
||
h2:hover{ | ||
|
||
background-color: hotpink; | ||
color: #f6f6df; | ||
} | ||
|
||
header h2 { | ||
|
||
/* background-image: url("blue-watercolor-background_615876-5.jpg"); */ | ||
padding: 3em; | ||
font-family: serif; | ||
font-style: italic; | ||
} | ||
|
||
#quote{ | ||
|
||
background-color: lightblue; | ||
background-size: 1em; | ||
|
||
} | ||
|
||
a, a:visited { | ||
background-color: #f6f6df; | ||
color: lightskyblue; | ||
|
||
} | ||
|
||
section { | ||
|
||
border-color: gold; | ||
border-style: solid; | ||
border-width: 0.5em; | ||
} | ||
|
||
section h2 { | ||
|
||
color: hotpink; | ||
font-weight: bold; | ||
font-size: 3em; | ||
|
||
} | ||
|
||
div { | ||
|
||
border-color: skyblue; | ||
border-style: solid; | ||
border-width: 4px; | ||
margin-left: 1em; | ||
margin-top: 1em; | ||
margin-right: 2em; | ||
} | ||
|
||
div p { | ||
|
||
margin: 1em; | ||
} | ||
|
||
.solid { | ||
|
||
display: block; | ||
height: 6px; | ||
border: 0; | ||
border-top: 1px solid skyblue; | ||
margin: 1em 0; | ||
padding: 0; | ||
|
||
} | ||
|
||
.rounded { | ||
display: block; | ||
height: 8px; | ||
border: 0; | ||
border-top: 2px solid blue; | ||
margin: 1em 0; | ||
padding: 0; | ||
|
||
} | ||
|
||
li:active { | ||
|
||
background-color: hotpink; | ||
font-weight: bold; | ||
font-style: italic; | ||
} |
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,23 @@ | ||
body { | ||
background-color: #F8EEE7; | ||
} | ||
|
||
header p, footer p { | ||
background-color: #F4DECB; | ||
} | ||
|
||
section p { | ||
background-color: #94618E; | ||
color: #F8EEE7; | ||
} | ||
article p { | ||
background-color: #49274A; | ||
} | ||
#specific { | ||
background-color: #FFFFFF; | ||
color: #49274A; | ||
} | ||
p:hover { | ||
background-color: #B4DBC0 !important; | ||
border: 2px dashed black; | ||
} |