Objective: In lesson 3 you will learn how to code a website. These codes below will help you understand how to code the website a lot easier than trying to figure it out on your own
Requirements: For this lesson you will need notepad if you want to do complete raw code or notepad ++ for easy website building.
Step-by-step Process: ---Think about a website visualization to meet your needs and goals. ---Sketch a image of what your finished website should look like. ---Think of all info or details you want on the website. ---Code your website to your needs and goals.
- To start the code of your website, use this <HTML> at the very end of your code be sure to do </HTML> to end your code, however if you don't add this it should not effect your website because it only ends your area of that code.
- To make a header use <head>
- Next type <title> this sets the title that shows in the tab as the name of your website. When you selected the name you want, type </title> to end the title.
- Next end header by typeing </head>
- Now, create your body contents. to do so, type <body>
- Now you want to make a body paragraph. to make your body paragraph type <p> Now add your content you would like and use </p> to end your content block.
- Next type </body> to end your body
- </HTML> to end your website code.
These codes below are codes that you can use when you want to make a website.
Requirements: For this lesson you will need notepad if you want to do complete raw code or notepad ++ for easy website building.
Step-by-step Process:
---Think about a website visualization to meet your needs and goals.
---Sketch a image of what your finished website should look like.
---Think of all info or details you want on the website.
---Code your website to your needs and goals.
- - To start the code of your website, use this <HTML> at the very end of your code be sure to do </HTML> to end your code, however if you don't add this it should not effect your website because it only ends your area of that code.
- - To make a header use <head>
- - Next type <title> this sets the title that shows in the tab as the name of your website. When you selected the name you want, type </title> to end the title.
- - Next end header by typeing </head>
- - Now, create your body contents. to do so, type <body>
- - Now you want to make a body paragraph. to make your body paragraph type <p> Now add your content you would like and use </p> to end your content block.
- - Next type </body> to end your body
- - </HTML> to end your website code.
These codes below are codes that you can use when you want to make a website.Questions1. what should you start your website using code?2.what should you use to create and code?3.what symbol do u use to always start your code?