Question

In: Computer Science

How do I use the meta element to sepicify your name as the document author and...

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.

Solutions

Expert Solution

<!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.


Related Solutions

Identification of a Communication Theory: Uncertainty Reduction Theory Meta-theoretical Assumptions: How would the author of your...
Identification of a Communication Theory: Uncertainty Reduction Theory Meta-theoretical Assumptions: How would the author of your theory define communication? Which of the 7 issues in defining communication discussed in class would be most important to the author of your theory? How do you know?
Use your calculator to complete the table. **How do I graph y=ex ***How do I graph...
Use your calculator to complete the table. **How do I graph y=ex ***How do I graph the Inverse of y=ex x y=ex -3 -2 -1 0 1 1 2 3
with java code write The method prints a meaningful title with your name as the author....
with java code write The method prints a meaningful title with your name as the author. The method then generates THREE random numbers 0 - 4 and reports how many of the numbers are the same. 2-Use a loop to repeat 10 times. the output should be like this Title title title by Your Name 4, 3, 4 two are the same 4, 0, 0 two are the same . . . 2, 0, 4 none are the same 4,...
1. How do I write a query that displays the name (concatenate the first name, middle...
1. How do I write a query that displays the name (concatenate the first name, middle initial, and last name), date of birth, and age for all students? Show the age with no decimal places, and only include those students who are 21 or older. Order by age, as shown below: (Hint: Use the TRUNC function. The ages may be different, depending on the date that the query is run.) SELECT S_FIRST || ' ' || S_MI || ' '...
how do I copy my word data to excel I typed my report on word document...
how do I copy my word data to excel I typed my report on word document and would like to copy them on excel 2013 in other to add table and graph
Read the following document to answer the question: (use the document to support your idea as...
Read the following document to answer the question: (use the document to support your idea as a reference since I'm using the answer to complete my paper, please) How working both 8 hour and 12 hour nursing shift impact the negligence and malpractice at work if you are working as a nurse? Negligence and malpractice There are two types of torts: an unintentional tort (or wrong) and an intentional tort. An unintentional tort is an unintended wrong against another person....
Read the following document to answer the question: (use the document to support your idea as...
Read the following document to answer the question: (use the document to support your idea as a reference since I'm using the answer to complete my paper, please) How working both 8 hour and 12 hour nursing shift impact the accountability at work if you are working as a nurse? The challenge of accountability A host of specific ethical issues exists within the practice of nursing itself. Professional nursing is a complex profession that is unlike most others. The accountability...
How do i get the code below to add an element before another without making the...
How do i get the code below to add an element before another without making the array off one element? (javascript) public void addBefore(double element) { itemCount++; double data[] = new double[this.data.length]; if(currentIndex <= itemCount) { if(currentIndex != 0) { for(int index = currentIndex; index >= itemCount; index ++) { data[index] = this.data[index]; } currentIndex--; data[currentIndex] = element; } if(currentIndex == 0) { data[0] = element; currentIndex = 0; } } }
Explain chromatography. What is it and how do I use it?
Explain chromatography. What is it and how do I use it?
Python I want to name my hero and my alien in my code how do I...
Python I want to name my hero and my alien in my code how do I do that: Keep in mind I don't want to change my code except to give the hero and alien a name import random class Hero:     def __init__(self,ammo,health):         self.ammo=ammo         self.health=health     def blast(self):         print("The Hero blasts an Alien!")         if self.ammo>0:             self.ammo-=1             return True         else:             print("Oh no! Hero is out of ammo.")             return False     def...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT