write a code in HTML for below instruction: 1. Insert the lang attribute in the
ID: 3913822 • Letter: W
Question
write a code in HTML for below instruction:
1. Insert the lang attribute in the head tag.
2. Insert the meta tags in the head section.
3. Complete the main section/articles. At the present time, you do NOT need to include a picture of yourself.
Use below file to write approprite code according to comment:
<!DOCTYPE HTML> <html> <!-- Begin head --> <head><!-- insert lang attribute in head tag --> <meta charset="UTF-8" /> <!-- meta description information goes here --> <!-- meta keywords information goes here --> <!-- meta author information goes here --> <meta name="DC.date" description="2017-01-18" /> <title>Welcome 2017 - XYZ</title> <!-- Link to style sheet goes here --> <!-- Internal styles go here --> <!-- Link to JavaScript or jQuery goes here --> <!-- Internal JavaScript or jQuery code goes here --> </head><!-- end head --> <!-- Begin body --> <body> <!-- Begin header --> <header> <!-- Main header --> <h1>Welcome 2017</h1> <h2XYZ</h2> <!-- Main navigation list --> <nav> <ul> <li><a href="#" >Home Page </a></li> <li><a href="#" >About Me </a></li> <li><a href="#" >My Courses</a></li> <li><a href="#" >Contact Me</a></li> </ul> </nav><!-- end nav --> </header><!-- end header --> <!-- Main begin --> <main> <!-- Content section begin --> <section> <!-- Section header - level h3 --> <h3>Welcome to my Web Site</h3> <article> <!-- Placeholder for your picture to be inserted later --> <figure> <img src="" width="150" height="150"/> <figcaption>Your Name Here</figcaption> </figure> <!-- Put a big paragraph here about who you are and your personal vision / goals for your future. --> <!-- Enclose a personal quote here in a paired blockquote tag --> <!-- Put a brief paragraph here about how you will achieve your vision / goals. --> </article> </section> <!-- NO ASIDE ON HOME PAGE --> </main><!-- end main --> <!-- Begin footer --> <footer> <h4>Copyright YYYY <a href="">Your Email</a></h4> <h5>CS597 Multimedia and Web Development <span>Term Year Section</span></h5> </footer><!-- end footer --> </body><!-- end body --> </html>Explanation / Answer
Please find the modified code below.
CODE
===============
<!DOCTYPE HTML>
<html>
<!-- Begin head -->
<head><!-- insert lang attribute in head tag -->
<html lang="fr">
<meta charset="UTF-8" />
<!-- meta description information goes here -->
<!-- meta keywords information goes here -->
<!-- meta author information goes here -->
<meta name="DC.date" description="2017-01-18" />
<meta name="description" content="HTML Page">
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
<meta name="author" content="John Doe">
<title>Welcome 2017 - XYZ</title>
<!-- Link to style sheet goes here -->
<link rel="stylesheet" type="text/css" href="styles.css">
<!-- Internal styles go here -->
<style>
body {
font-family: sans-serif;
}
</style>
<!-- Link to JavaScript or jQuery goes here -->
<script type="text/javascript" src="javascript.js" />
<!-- Internal JavaScript or jQuery code goes here -->
<script type="text/javascript">
function my_code(){
alert(" Alert inside my_code function");
}
window.onload = my_code();
</script>
</head><!-- end head -->
<!-- Begin body -->
<body>
<!-- Begin header -->
<header>
<!-- Main header -->
<h1>Welcome 2017</h1>
<h2XYZ</h2>
<!-- Main navigation list -->
<nav>
<ul>
<li><a href="#" >Home Page </a></li>
<li><a href="#" >About Me </a></li>
<li><a href="#" >My Courses</a></li>
<li><a href="#" >Contact Me</a></li>
</ul>
</nav><!-- end nav -->
</header><!-- end header -->
<!-- Main begin -->
<main>
<!-- Content section begin -->
<section>
<!-- Section header - level h3 -->
<h3>Welcome to my Web Site</h3>
<article>
<!-- Placeholder for your picture to be inserted later -->
<figure>
<img src="" width="150" height="150"/>
<figcaption>Your Name Here</figcaption>
</figure>
<!-- Put a big paragraph here about who you are and
your personal vision / goals for your future. -->
<!-- Enclose a personal quote here in a paired blockquote tag -->
<!-- Put a brief paragraph here about how you will achieve your
vision / goals. -->
<p><b>Your personal vision goes here.</b></p>
<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature.
The world's leading conservation organization,
WWF works in 100 countries and is supported by
1.2 million members in the United States and
close to 5 million globally.
</blockquote>
<p><b>How you will achieve your vision / goals.</b></p>
</article>
</section>
<!-- NO ASIDE ON HOME PAGE -->
</main><!-- end main -->
<!-- Begin footer -->
<footer>
<h4>Copyright YYYY <a href="">Your Email</a></h4>
<h5>CS597 Multimedia and Web Development <span>Term Year Section</span></h5>
</footer><!-- end footer -->
</body><!-- end body -->
</html>
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.