Question
1. Use your text editor to create a new HTML file named apply11.html. Include a comment with your name and todays date. 2. Include all
1. Use your text editor to create a new HTML file named apply11.html. Include a comment with your name and todays date.
2. Include all necessary HTML5 elements for a webpage.
3. Create a title for the page and use Credit as the webpage title.
4. Insert a description meta tag with a content attribute and use This website provides helpful information about how to build good credit. as the value.
5. Create a header element.
6. Create an h1 element within the header element and include the text How to Build Good Credit as the heading text.
7. Create a main element.
8. Use your browser to research ways to build good credit. Summarize your findings within a paragraph element within the main element.
9. Create an unordered list of at least three steps one should take to build credit. Place the unordered list below the paragraph element, but within the main element.
10. Create a footer element that contains your name.
11. Save your changes.
12. Publish the website files to a remote server.
13. View your published website in your browser.
The code is below
/* Style sheet created by: Student's First Name Student's Last Name, Today's Date */
/* Style for body specifies a background color */ body { background-color: #05A653; }
/* Style for the container element */ #container { width: 80%; margin-left: auto; margin-right: auto; }
/* Style for the header element */ header { font-family: Verdana, Arial, sans-serif; margin-top: 0.2em; background-color: #308559; color: #FFFFFF; padding: 1em; }
/* Style for the main element */ main { display: block; padding: 1em; background-color: #FFFFFF; box-shadow: .5em .5em .5em #404040; }
/* Style for the footer element */ footer { font-size: .70em; text-align: center; margin-top: 2em; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started