Share:
Notifications
Clear all

Earn While Learning Web3 Programming>> Start Here FREE!!!

[Solved] What is HTML Template

3 Posts
3 Users
2 Reactions
416 Views
1
Topic starter

EXERCISE:

i. Watch the above lesson video and also read through the recommended resources. Then, answer following questions

ii. What Is HTML Template?

iii. Summarize in your own word in this forum below:
(NOTE: please, don't just copy paste from other students - instead answer in your own word base on your level of understanding the lesson and resources)

 

 

NOTE:

This Is An Exercise From Our FREE COURSE with CERTIFICATION:

 HTML For Web3 dApp Development Course

(If you have not enrolled yet, you can join the course totally for FREE).

 

User Avatar Abdulwasiu Kuforiji 12/11/2023 8:13 am

@foskaayteam4 HTML Template is the basic template of html that helps to present our html webpages to the browser.

2 Answers
1
Topic starter

What is HTML Template ?

     HTML Template is a pre-made HTML document that is well organized and written in HTML to be re-used       by other programmers easily.

 How To Write HTML Template?
     <!DOCTYPE html>
     <html lang="en">
     <head>
             <meta charset="UTF-8">
             <meta http-equiv="X-UA-Compatible" content="IE=edge">
             <meta name="viewport" content="width=device-width, initial-scale=1.0">
             <title>Document</title>
    </head>
    <body>

    </body>
    </html>

0

HTML template

It means an already organized sample written in HTML to be reused by other programmers

How to write HTML template

 

  <!DOCTYPE html>
     <html lang="en">
     <head>
             <meta charset="UTF-8">
             <meta http-equiv="X-UA-Compatible" content="IE=edge">
             <meta name="viewport" content="width=device-width, initial-scale=1.0">
             <title>Document</title>
    </head>
    <body>

    </body>
    </html>

Share: