so you have saw websites created by people but never really understood how? Well I will show you some real basic and simple html info.
Lets start with tags.
<HTML> </HTML> These are the open and closing tags of an html file.
<TITLE></TITLE> This is the title that will be displayed on the tab in a browser.
<HEAD></HEAD> Meta tags and small scripts go here.
<BODY></BODY> Just like if you are writing a letter your content goes here.
<TABLE></TABLE> Allows you to make a table.
<TR></TR> This is the table row.
<TD></TD> This is your table data cell. (TD goes inside of the TR tags.)
<FORM></FORM> This is where input data goes for logins and stuff like that.
<input> this tag does not have a close but has many different types.
<input type="button">
<input type="submit">
<input type="text">
<input type="hidden">
<input type="username">
<input type="password">
Will continue more later.