index.html
This paragraph has no style
This is a seagreen color paragraph
This is an RGB color and fontsize 50px paragraph
This is a centered, red, fontsize 24px, and coral background paragraph
I want this text to be blue
This one to be red
This one to be green, 24px, and right aligned
This paragaph is part of a div. And this is a span inside of my div
This paragraph is still part of a div
css/style.css
body {
background-color: bisque;
}
.nav {
list-style-type: none;
background-color: lightgray;
margin: 0;
padding: 0;
overflow: hidden;
}
ul.nav li {
float: left;
}
ul.nav li a {
display: block;
padding: 8px 16px;
color: black;
text-decoration: none;
}
ul.nav a:hover {
background-color: #555;
color: white;
}
.active {
background-color: antiquewhite;
}
gallery.html