Main Site Root Folder
The Main Site Root Folder is the folder that holds all the content for the entire website. It is located on a hard drive or the creator's computer and then put on a server.
The Main Site Root Folder is important for project progress because computers rely on accuracte file location to link files to HTML pages. For full functionality, it's important to keep the Main Site Root Folder in one location for the entirety of the site's "life" (don't forget to back it up to prevent potential data loss).
HTML Sandwitch
The HTML Sandwich is the format in which the HTML code is "grouped." Below is a formatting example that looks top-down, like a sandwich.
Doctype
HTML data
HTML
Body
HTML end
Text HTML Tags
HTML tags are the structure used to format the content of a web page. Tags are enclosed in angle brackets (Greater than and Less than Symbols).
- P is the Paragraph tag
- Body is the Body tag
- Ul is the Un-orderd list tag
- Li is the List tag
- H1 is the Header 1 tag (The number can be interchanged for a number 1-6)
- Br is the break tag that helps separate content
CSS = Style
Style is an alternative to CSS that can be used when you want to override a specific section of your code for a particular look without changing the CSS for several pages.
If you want to apply a style to a specified section instead of the whole webpage, use: <p style="font-size: 24px;">.
HTML = Content/Structure
HTML (Hypertext Markup Language) is a used to organize and structure the content on a webpage. It helps define how text, images, and links are arranged or displayed on a website.
- Div is the section, that can have their own formatting tag
- Width is the style that adjusts the width of an element.
- Li is the List tag
- H1 is the Header 1 tag (The number can be interchanged for a number 1-6)
- Br is the break tag that helps separate content