Question

In: Computer Science

Write an HTML file for a web page that contains the items below. Use an internal...

Write an HTML file for a web page that contains the items below.

Use an internal style sheet to specify all fonts, sizes, colors, and any other aspects of the presentation. Your page should contain the following items:

1) A header with white text on dark green background (just for the header, not the entire page), in Impact font, bold, and centered.

2) Two paragraphs of text, each with dark gray text in Tahoma font, on a light blue background, and with a dark blue border.

3) At least two hyperlinks, with the default link color set to something other than blue, different for each link.

4) A bulleted (unordered) list with square bullets and left margin set to 100 pixels, with at least 3 bullet items.

Solutions

Expert Solution

<!DOCTYPE html>
<html>
<head>
<style>
header{
background-color: darkgreen;
}
header h1{
color: white;
font-family: Impact;
text-align: center;
}
p{
background-color: lightblue;
border: 1px solid darkblue;
color: darkgrey;
font-family: Tahoma;
}
.first-link{
color:#FF0000;
}
.second-link{
color: yellow;
}
.list{
list-style-type:square;
margin-left: 100px;
}
</style>
</head>
<body>

<header>
    <h1>Heading</h1>
</header>
<p>I am the first paragraph</p>
<p>I am the second paragraph</p>
<a href="http://example.com/" class="first-link">Red Link</a>
<a href="http://example.com/" class="second-link" >Yellow Link</a>
<ul class="list">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
</body>
</html>

  
  

Related Solutions

Write an HTML file that create the following web page. my first nested list steps of...
Write an HTML file that create the following web page. my first nested list steps of backing a cake Important notes: You should have to copy and paste the “HTML script” as your answer for this question. DON’T take screen shot for your HTML script. It must be editable script. Take a screen shot for your output web page and paste it as a part of your answer.
Develop a personal web page for yourself using HTML, CSS, and Javascript Use the following HTML...
Develop a personal web page for yourself using HTML, CSS, and Javascript Use the following HTML tags to design your webpage: <h1>...</h1>,<h3>...</h3>, <h6>...</h6>, <p>...</p>, <b>...</b>, <i>...</i>, <a>...</a>, <img...>, <table>... </table>, <div>...</div>, <form>...</form>, <input type="text">, and <input type= "submit"> Use an external css to change the default style of your webpage. You must use at least one element selector, one id selector, and one class selector Using text input and submit button, allow the user to change the background color of...
Create a web page using PHP and HTML that contains a list of movie names available...
Create a web page using PHP and HTML that contains a list of movie names available for rent (at least 10 movies), so that each time you visit the home page, you see a different order of movies in the list. The movie names are required. 2) The rental price for each movie ranges between $1.99 to $7.99. • Create an associative array with a code for the movie as the key (e.g., movie1, movie2, etc.) and the associated rental...
use CSS, java and HTML to make a charity admin page. It's a web page after...
use CSS, java and HTML to make a charity admin page. It's a web page after you log in to your account. I can have personal information, the amount of money donated, the children who have received charity, and some blogs. In fact, all the things are what I want. But you are free to do whatever You like, even if you don't say what I say. I just need a charity Admin page for charity User.Don't ask me for...
use CSS, java and HTML to make a charity admin page. It's a web page after...
use CSS, java and HTML to make a charity admin page. It's a web page after you log in to your account. I can have personal information, the amount of money donated, the children who have received charity, and some blogs. In fact, all the things are what I want. But you are free to do whatever You like, even if you don't say what I say. I just need a charity Admin page for charity User.Don't ask me for...
use CSS, java and HTML to make a charity admin page. It's a web page after...
use CSS, java and HTML to make a charity admin page. It's a web page after you log in to your account. I can have personal information, the amount of money donated, the children who have received charity, and some blogs. In fact, all the things are what I want. But you are free to do whatever You like, even if you don't say what I say. I just need a charity Admin page for charity User.Don't ask me for...
use CSS, java and HTML to make a charity admin page. It's a web page after...
use CSS, java and HTML to make a charity admin page. It's a web page after you log in to your account. I can have personal information, the amount of money donated, the children who have received charity, and some blogs. In fact, all the things are what I want. But you are free to do whatever You like, even if you don't say what I say. I just need a charity Admin page for charity User.Don't ask me for...
use CSS, java and HTML to make a charity admin page. It's a web page after...
use CSS, java and HTML to make a charity admin page. It's a web page after you log in to your account. I can have personal information, the amount of money donated, the children who have received charity, and some blogs. In fact, all the things are what I want. But you are free to do whatever You like, even if you don't say what I say. I just need a charity Admin page for charity User.Don't ask me for...
use CSS, java and HTML to make a charity admin page. It's a web page after...
use CSS, java and HTML to make a charity admin page. It's a web page after you log in to your account. I can have personal information, the amount of money donated, the children who have received charity, and some blogs. In fact, all the things are what I want. But you are free to do whatever You like, even if you don't say what I say. I just need a charity Admin page for charity User.Don't ask me for...
construct an HTML page that contains a three levels nesting list. 2 items are required on...
construct an HTML page that contains a three levels nesting list. 2 items are required on each level (could be random texts of your choice). The first level is to be an ordered list, the second level should be unordered list and the third level should be Description List.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT