subject

In this exercise, you will create two external style sheet files and a web page. You will experiment with linking the web page to the external style sheets and not how the display of the page is changed.
1. Create an external style sheet (call it format1.css) to format as follows: document background color of white, document text color of #000099, and document font family of Arial, Helvetica, or sans-serif. Hyperlinks should have a background color of gray (#ccceee). elements should use the Times New Roman font with red text color.
2. Create an external style sheet (call it format2.css) to format as follows: document background color of yellow, document text color of green. Hyperlinks should have a background color of white. elements should use the Times New Roman font with white background color and green text color.
3. Create a web page about your favorite movie that displays the movie name in an tag, a description of the movie in a paragraph, and an unordered list of the main actors and actresses in the movie. The page should also have a hyperlink to a web site about the movie. Place an email link to yourself on the web page. This page should be associated with the format1.css file. Save the page as moviecss1.html Be sure to test your page in more than one browser. Save as format1.css and movieccs1.html.
(Please write the complete program for all CSS and HTML program please and thanks)

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 18:30
Ayear in the modern gregorian calendar consists of 365 days. in reality, the earth takes longer to rotate around the sun. to account for the difference in time, every 4 years, a leap year takes place. a leap year is when a year has 366 days: an extra day, february 29th. the requirements for a given year to be a leap year are: the year must be divisible by 4if the year is a century year (1700, 1800, the year must be evenly divisible by 400some example leap years are 1600, 1712, and 2016.write a program that takes in a year and determines whether that year is a leap year.ex: if the input is 1712, the output is: 1712 is a leap year.ex: if the input is 1913, the output is: 1913 is not a leap year.
Answers: 2
question
Computers and Technology, 22.06.2019 05:10
Read the code below. what will the computer print if the input for year_variable is 1700? if year_variable == 1776: print("your answer is correct. the declaration of independence was signed in “year_variable”.") elif year_variable < 1776: compute_variable = 1776 - year_variable. print("add “compute_variable“ years to your answer for the correct answer.") elif year_variable > 1776: compute_variable = year_variable - 1776 print("subtract “compute_variable” years from your answer for the correct answer.")
Answers: 1
question
Computers and Technology, 22.06.2019 20:00
What is the worst-case complexity of the maxrepeats function? assume that the longest string in the names array is at most 25 characters wide (i.e., string comparison can be treated as o( class namecounter { private: int* counts; int nc; string* names; int nn; public: namecounter (int ncounts, int nnames); int maxrepeats() const; }; int namecounter: : maxrepeats () { int maxcount = 0; for (int i = 0; i < nc; ++i) { int count = 1; for (int j = i+1; j < nc; ++j) { if (names[i] == names[j]) ++count; } maxcount = max(count, maxcount); } return maxcount; }
Answers: 3
question
Computers and Technology, 22.06.2019 21:10
Dameas communication challenge is due to which factor
Answers: 2
You know the right answer?
In this exercise, you will create two external style sheet files and a web page. You will experiment...
Questions
question
Mathematics, 19.04.2020 05:47
question
History, 19.04.2020 05:49
question
Computers and Technology, 19.04.2020 05:49
question
Mathematics, 19.04.2020 05:49
Questions on the website: 13722363