Setup Enter your name and the date in the comment section of the dr_index.html ,
ID: 3877584 • Letter: S
Question
Setup
Enter your name and the date in the comment section of the dr_index.html, dr_info.html, and dr_faq.htmlfiles.
Go to the dr_index.html file; within the document head, add the following metadata:
Set the character encoding of the file to utf-8.
Insert the search keywords: breast cancer, run, race, and charity.
Set the title of the document to Diane's Run.
Link the document to the dr_base.css and dr_layout.css style sheet files.
Within the document body, insert a header element, two section elements, and a footer element.
Header
In the header element, insert a navigation list containing an unordered list with the items: Home, Race info, and FAQ. Link the items to the dr_index.html, dr_info.html, and dr_faq.html files respectively.
Whats wrongg with my code?
<!doctype html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 1
Filename: dr_index.html
-->
<meta charset = "utf-8" />
<meta name="keywords"
content ="breast cancer,run,race,charity"/>
<title>Diane's Run</title>
<link href="dr_base.css" rel="stylsheet"/>
<link href="dr_layout.css" rel="stylsheet"/>
</head>
<body>
<header>
<nav>
<ul>
<li>Home</li>
<li>Race info</li>
<li>FAQ</li>
</ul>
</nav>
<a href="dr_index.html"></a>
<a href="dr_info.html"></a>
<a href="dr_faq.html"></a>
</header>
<section> </section>
<footer> </footer>
</body>
</html>
Explanation / Answer
<!doctype html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 1
Filename: dr_index.html
-->
<meta charset = "utf-8" />
<meta name="keywords" content ="breast cancer,run,race,charity"/>
<title>Diane's Run</title>
<link href="dr_base.css" rel="stylsheet"/>
<link href="dr_layout.css" rel="stylsheet"/>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="dr_index.html">Home</a></li>
<li><a href="dr_info.html">Race info</a></li>
<li> <a href="dr_faq.html">FAQ</a></li>
</ul>
</nav>
</header>
<section> </section>
<footer> </footer>
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.