This is written outside the <html> tag [ some chromium based browsers allow this ] | do not rely on this method as not all browsers support this .
HTML
Hyper Text Markup Language
200 is the http status code for ok or success.
This comes from server to the browser. Meaning when a browser sends a request to a server
it gets the code for that particular type of request - which is mostly a html code , that is rendered
Introduction
the browser is used to output the content in the browser screen for the client
500 is the internal server error- where the server isn't serving for the request
undefined action for that particular request
404 is when the browser says that It cannot find the specified session on the www
consortium.
<video src="< your path to file >" ></video>: Helps to show your video
in order to play include the attribute controls inside the video tag. img is the image tag that uses the src attribute to show the image from the specified path alt is the attribute to show the alternate text [ cannot show images ] if the first specifed object isn't displaying
HTML is the frame of the website CSS is the styling of the frame JS is the functionality of the website
Link to CSS | JS
Inorder to link a CSS use link tag with the rel attribute to specify the relation of
the
specified file to this current.
Use the srcattribute to specify the file.
similarly for javascript script tag can have the attribute : src
Structure of HTML
Self closing tags close by themself.
The other ones are called paired tags
!DOCTYPE html
helps the OS to identify the type of the file
html lang="en"
helps the parser to understand that : this particular html is written in "en" language
title
is used to give the title of the type that appears in the tab
head
is used to store the metadata about the document/website and links to external files
Meta
is used to give the meta data of the website like the description
Body
is the main part of the html that contains all the part of the website which has to be shown in the screen only
Body Content [basics]
Heading
Hx is the heading levels , where x ranges from 1 to 6
Paragraphs
when style is used as an attribute in these tags: it is called as Inline attributes.
Anchor
similar to video you can use the src attribute for the redirection.
Use the target="_blank" to open in a new tab by default.