Title for the web page is Weather DataMetatags:• set the character encoding to ISO-8859-1• set the name of the author to TawaraWeb followed by a space then your name• set the web page description to Weather data for the Tawara region• set the viewport to the width of the device being used with an initial scaling of 2• set two appropriate metatag keywords for use by search engines for this page.Set the default target window to _blank if a new web page is opened from within this webpage.Place a copy of your HTML source in your Evidence Document.[22][Total: 28]www.dynamicpapers.com
Question
Title for the web page is Weather DataMetatags:• set the character encoding to ISO-8859-1• set the name of the author to TawaraWeb followed by a space then your name• set the web page description to Weather data for the Tawara region• set the viewport to the width of the device being used with an initial scaling of 2• set two appropriate metatag keywords for use by search engines for this page.Set the default target window to _blank if a new web page is opened from within this webpage.Place a copy of your HTML source in your Evidence Document.[22][Total: 28]www.dynamicpapers.com
Solution
Here is the HTML code that fulfills the requirements:
<!DOCTYPE html>
<html>
<head>
<title>Weather Data</title>
<meta charset="ISO-8859-1">
<meta name="author" content="TawaraWeb YourName">
<meta name="description" content="Weather data for the Tawara region">
<meta name="viewport" content="width=device-width, initial-scale=2">
<meta name="keywords" content="Tawara, Weather">
<base target="_blank">
</head>
<body>
<!-- Your webpage content goes here -->
</body>
</html>
Here's a step-by-step explanation:
- The
<!DOCTYPE html>declaration helps with browser compatibility. - The
<html>tag is the root of an HTML document. - The
<head>tag contains meta-information about the HTML document. - The
<title>tag specifies a title for the HTML document (displayed in the browser's title bar or tab). - The
<meta charset="ISO-8859-1">tag sets the character encoding for the HTML document. - The
<meta name="author" content="TawaraWeb YourName">tag sets the author of the HTML document. - The
<meta name="description" content="Weather data for the Tawara region">tag provides a description of the HTML document. - The
<meta name="viewport" content="width=device-width, initial-scale=2">tag gives the browser instructions on how to control the page's dimensions and scaling. - The
<meta name="keywords" content="Tawara, Weather">tag specifies keywords for search engines. - The
<base target="_blank">tag specifies the default target for all hyperlinks and forms in the page. - The
<body>tag contains the content of the HTML document.
Replace "YourName" with your actual name in the author meta tag.
Similar Questions
Create all the head section of a web page to meet these specifications:Title for the web page is Weather DataMetatags:• set the character encoding to ISO-8859-1• set the name of the author to TawaraWeb followed by a space then your name• set the web page description to Weather data for the Tawara region• set the viewport to the width of the device being used with an initial scaling of 2• set two appropriate metatag keywords for use by search engines for this page.Set the default target window to _blank if a new web page is opened from within this webpage.
Write the HTML Code with the Title "My first Blog Page" and give the heading of the page as "Global Warming"[2]
Write the HTML Code with the Title "My first Blog Page" and give the heading of the page as "Global Warming"
When end-text referencing an internet source you simply write down the name of the website or the URL.TrueFalseReset Sel
Which of the following is an example of metadata about a webpage?The title of the webpageThe body of the webpageAn <h1> tag on the webpageAll of the above
Upgrade your grade with Knowee
Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.