WWW - World Wide Web
- It used to tell the server, that the request wants to access its "web" part
i.e - the website hosted on it
URL - Uniform Resource Locator
- It is static address to locate any "resource" on the internet
- Resource can be any web page/ media/ file/ service, etc.
HTML - Hyper Text Markup Language
- It is used to create web pages
- The building blocks of HTML are called Tags e.g - <head>, <body>, <title>
- We have various kinds of tags
- Layout Tags - <head> <body> <html>
- Meta Tags - <meta> <!doctype> <link> <rel>
- Element Tags - <p> <img> <ul> <ol> <li> <table> <div>
- Formatting Tags - <b> <u> <i> <font>
- Most tags are in pairs
<p> Hello World </p>
<body> ... </body>
<br /> -> Empty Tag
<img src="" /> -> Empty Tag
<head> - to tell about the website
<title> - Page Title
<meta> - Metadata regarding the web page
<body> - Contains Entire Content of the page
<p> - paragraph
<h1-h6> - headings of various importance
Image Formats
jpg/jpeg- real world images, photographs, lossy format, easy to compress
png - digital images, lossless format, easy to compress, transparency
gif - animation, lossy, transparency
svg - ratios & mathemetical formulas, logos, icons
webp - website optimization, low size
<ul> - Unordered List (bullet points)
<ol> - Ordered List (1-2-3, a-b-c)
<dl> - Definiton List
<dt> Definion Term
<dd> Definition Data
<a> - Anchor tag
<button>
CSS - Cascaded Style Sheets