In: Computer Science
How do I use the meta element to sepicify your name as the document author and as kansas and elections as key words for web search engines?
How do I create semantic link in the document head linking this document to the office of the kansas secretary of state at the following address: ( http://www.kssos.org/elections_statistics.html ) use the property attribute value of external for the link.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="keywords" content="kansas,elections">
<meta name="author" content="Your Name">
</head>
<body>
<h1> <a href="http://www.kssos.org/elections_statistics.html">The office of the kansas secretary of state</a> </h1>
</body>
</html>
Description:
1) <meta name="keywords" content="kansas,elections">
when meta tag with name attribute is set as "keywords", "content" attribut describes the keywords for the webpage.
2) <meta name="author" content="Your Name">
when meta tag with name attribute is set as "author", "content" attribut describes the name of the author of the webpage.
3) <h1> <a href="http://www.kssos.org/elections_statistics.html">The office of the kansas secretary of state</a> </h1>
semantic link having <a> tag starting and closing with heading.