In: Computer Science
Hello! Html question. I am trying to add a background to a page. How would i do this? I have tried using a jpg. The code is posted below. i used the background-image: url function. Any help of different ways to do this would be appreciated! Thank you!
CODE:
<!DOCTYPE html>
<html>
<head>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-family: fantasy;
font-size: 20px;
}
li a:hover {
background-color: #111;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-image: url("Dark Brown Volcanic Sand Background Stock Photo, Picture And Royalty Free Image. Image 124599840..html");
}
p {
font-family: comic sans ms;
font-size: 21px;
color: red;
}
footer {
clear: both;
position: relative;
z-index: 10;
height: 32px;
margin-top: -3em;
background: #333;
text-align: center;
font-size: 20px;
color: white;
}
div.gallery {
margin: 10px;
border: 1px solid #ccc;
float: left;
width: 300px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
float: left;
width: 100%;
height: 200px;
object-fit: cover;
}
div.desc {
padding: 40px;
text-align: center;
}
</style>
<title>Frank and Carol's Comfy Candles</title>
</head>
<body>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="product.html">Products</a></li>
</ul>
<div class="gallery">
<img src="01-christmas-wreath.jpg" alt="Christmas Wreath Candle">
</a>
<div class="desc">
Our Christmas wreath candle is our #1 best seller! Hand-crafted for the holidays, it always a centerpiece in
any christmas display, right at home next to the tree and a warm fire with egg nog. It brings a pine-y,
Yuletide joy to any room, and burns for hours during the long winter nights. Bring our wreath candle into
your home today, and make your holidays complete!
<br>Price: $24.95</div>
</div>
<div class="gallery">
<img src="02-chocolate-orange.jpg" alt="Chocolate Orange Candle">
</a>
<div class="desc">Our luxurious chocolate orange candle is an excellent way to wind down after a stressful day.
The strong flavors intertwine slowly while the candle burns, leaving your sense of smell hungry for more the
longer it is lit! It's always a lovely surprise for that special someone in your life, melting away the
worries into velvety bliss.
<br>Price: $16.95</div>
</div>
<div class="gallery">
<img src="03-aromatherapy.jpg" alt="Aromatherapy Candle">
</a>
<div class="desc">Allow the restorative power of our lavender aromatherapy candle to create a safe space in your
home. It is the perfect scent for meditation and deep contemplation, a deeply calming sensual experience for
your hectic lifestyle. Let the healing begin!
<br>Price: $12.95</div>
</div>
<div class="gallery">
<img src="04-cactus-candle.jpg" alt="Cactus Candle">
</a>
<div class="desc">Our fun and quirky cactus candle makes a great gift for that special someone in your life who
is undergoing transformative change, and needs a serene reminder of looking for the unexpected. It makes an
excellent party favor and conversation starter, and even as a decorative piece can bring a lot of joy to
your home!
<br>Price: $8.95</div>
</div>
<div class="gallery">
<img src="05-independence-day-3pk.jpg" alt="Independence Day Candle">
</a>
<div class="desc">One of our best sellers, this candle set evokes the wild and free nights of summer.
Exhilarating smells of campfires, fireworks, and freedom will liven up your next summer BBQ or picnic.
Equally enjoyable all year round!
<br>Price: $24.95</div>
</div>
<div class="gallery">
<img src="06-big-red.jpeg" alt="Big Red">
</a>
<div class="desc">Everyone loves Big Red! Deep hints of cinnamon and spice go nice all year round for this
long-burning candle. Fill your house with the smells of fresh baked apple pie and churro mixed together,
bringing even the most foggy-headed back to reality with this delicious cent. An absolute value!
<br>Price: $13.95</div>
</div>
<footer>2020 © Frank and Carol's Comfy Candles, built with love by </footer>
</body>
</html>
NOTE :
******************************************************
Below is the modified code :
<!DOCTYPE html>
<html>
<head>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-family: fantasy;
font-size: 20px;
}
li a:hover {
background-color: #111;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-image: url("images/1060201.jpg");
background-repeat: no-repeat;
background-size: 100%;
}
p {
font-family: comic sans ms;
font-size: 21px;
color: red;
}
footer {
clear: both;
position: relative;
z-index: 10;
height: 32px;
margin-top: -3em;
background: #333;
text-align: center;
font-size: 20px;
color: white;
}
div.gallery {
margin: 10px;
border: 1px solid #ccc;
float: left;
width: 300px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
float: left;
width: 100%;
height: 200px;
object-fit: cover;
}
div.desc {
padding: 40px;
text-align: center;
}
</style>
<title>Frank and Carol's Comfy Candles</title>
</head>
<body>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="product.html">Products</a></li>
</ul>
<div class="gallery">
<img src="01-christmas-wreath.jpg" >
</a>
<div class="desc">
Our Christmas wreath candle is our #1 best seller! Hand-crafted for the holidays, it always a centerpiece in
any christmas display, right at home next to the tree and a warm fire with egg nog. It brings a pine-y,
Yuletide joy to any room, and burns for hours during the long winter nights. Bring our wreath candle into
your home today, and make your holidays complete!
<br>Price: $24.95</div>
</div>
<div class="gallery">
<img src="02-chocolate-orange.jpg" >
</a>
<div class="desc">Our luxurious chocolate orange candle is an excellent way to wind down after a stressful day.
The strong flavors intertwine slowly while the candle burns, leaving your sense of smell hungry for more the
longer it is lit! It's always a lovely surprise for that special someone in your life, melting away the
worries into velvety bliss.
<br>Price: $16.95</div>
</div>
<div class="gallery">
<img src="03-aromatherapy.jpg" >
</a>
<div class="desc">Allow the restorative power of our lavender aromatherapy candle to create a safe space in your
home. It is the perfect scent for meditation and deep contemplation, a deeply calming sensual experience for
your hectic lifestyle. Let the healing begin!
<br>Price: $12.95</div>
</div>
<div class="gallery">
<img src="04-cactus-candle.jpg" >
</a>
<div class="desc">Our fun and quirky cactus candle makes a great gift for that special someone in your life who
is undergoing transformative change, and needs a serene reminder of looking for the unexpected. It makes an
excellent party favor and conversation starter, and even as a decorative piece can bring a lot of joy to
your home!
<br>Price: $8.95</div>
</div>
<div class="gallery">
<img src="05-independence-day-3pk.jpg" >
</a>
<div class="desc">One of our best sellers, this candle set evokes the wild and free nights of summer.
Exhilarating smells of campfires, fireworks, and freedom will liven up your next summer BBQ or picnic.
Equally enjoyable all year round!
<br>Price: $24.95</div>
</div>
<div class="gallery">
<img src="06-big-red.jpeg" >
</a>
<div class="desc">Everyone loves Big Red! Deep hints of cinnamon and spice go nice all year round for this
long-burning candle. Fill your house with the smells of fresh baked apple pie and churro mixed together,
bringing even the most foggy-headed back to reality with this delicious cent. An absolute value!
<br>Price: $13.95</div>
</div>
<footer>2020 © Frank and Carol's Comfy Candles, built with love by </footer>
</body>
</html>
=================================================