# Knowledge check: Practice using semantic tags

1. **What is the purpose of Semantic HTML tags?**
    
    * <mark>To describe the meaning of the HTML document</mark>
        
    * To describe the structure of the HTML document
        
    * To describe the layout of the HTML document
        
2. **What is the impact of using semantic tags in your HTML document? Select all that apply.**
    
    * <mark>It allows search engines to understand the HTML document</mark>
        
    * <mark>It allows accessibility software to understand the HTML document</mark>
        
    * It improves your rank in search engine results
        
3. **What type of content is the** `<article>` **semantic HTML element appropriate for? Select all that apply.**
    
    * <mark>Forum post</mark>
        
    * <mark>Blog post</mark>
        
    * <mark>News article</mark>
        
4. **Which of the following elements is most suitable for describing the navigation section of a webpage?**
    
    * &lt;main&gt;
        
    * <mark>&lt;nav&gt;</mark>
        
    * &lt;header&gt;
        
5. **You need to add a copyright notice to the bottom of a web page. Which of the following semantic tags is most suitable to use?**
    
    * <mark>&lt;footer&gt;</mark>
        
    * &lt;section&gt;
        
    * &lt;cite&gt;
        
6. **You need to indicate that a section of text in a** `<p>` **element is important. Which of the following semantic tags should you use?**
    
    * &lt;b&gt;
        
    * &lt;u&gt;
        
    * <mark>&lt;strong&gt;</mark>
        
7. **You need to display a list of descriptions on a web page. Which of the following tags are best-suited semantically?**
    
    * &lt;ul&gt;
        
    * <mark>&lt;dl&gt;</mark>
        
    * &lt;ol&gt;
