I learned that html is the key to making a web page. I learned that HTML stands for Hyper Text Markup Language and that it uses markup tags to describe a web page. HTML tags are keywords that are surrounded by angle brackets and come in pairs that has a start tag and a end tag. Html documents are designed to describe web pages, contain HTML tags and plain text, and they are called web pages.
More information found here Tags are required in HTML documents because without them, the webpage will not come out correctly or not at all. Also Html documents are divided into paragraphs of information and line breaks are inserted to start a new line in a paragraph without starting a new paragraph.
More information found here
![]() | <html> |
|---|
| Begins your HTML document. More information found here | <head> |
| Location were you put title of your homepage, discription, keywords, author, and so on. More information found here | <title> |
| Creates title in browser window. More information found here | </title> |
| Ends title command. More information found here | </head> |
| Ends head command. More information found here | </html> |
| Ends document. More information found here |
Css is used to give you more options on how your page will look. Css stands for Cascading Style Sheets and they define how to display HTML elemants. Css was created to solve problems in coloring and fonting text on web pages. Css is also used to change the color of the background or allowing you to put a picture as a background.
More information found here There are three ways you can apply CSS to an HTML document. One way to apply CSS to HTML is by using the HTML attribute style. The second way is to include the CSS codes using the HTML tag <style>. The last way is to link to a so-called external style sheet.
More information found here
Javascript, by definition, is a client-side scripting language. This means the web surfer's browser will be running the script. The opposite of client-side is server-side, which occurs in a language like PHP. The main benefit of Javascript is to add additional interaction between the website and its visitors with just a little extra work by the web developer. Javascript allows industrious web masters to get more out of their website than HTML and CSS can provide.
More information found here
