Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.36 KB

README.md

File metadata and controls

46 lines (33 loc) · 1.36 KB

download

# Front-End-Checklist

This Front end checklist is your go-to guide to what is needed in a static website

Head

In the head tag you create what is not shown on the website but the title of the website. You also link your folders that can contain the css file to make the website look pretty.

The requirements for the head tag

  • default META tag.
  • title of the webpage.
  • Links to different sheets in your code, such as a css file.

Body

In the Body tag, this is where you create the meat of the page. Where you can use html tags to construct and organize your brilliant new webpage.

The requirements for the Body tag

  • header tag.
  • nav tag.
  • main tag.
  • footer tag.

CSS file

This is a css file that you create beside your html file. It is designed to make your website look prettier!

What is in a CSS file

  • tags that calls from html. To make items centered, or style them a unique way.