├── HTML
├── html.md
├── html5.jpeg
├── html_embed_image.html
├── html_facts.md
├── html_forms.html
├── html_headings.html
├── html_inline_css.html
├── html_lists.html
├── html_paragraph.html
├── html_structure.html
└── i_tag.html
├── LICENSE
├── README.md
├── TypeScript
└── TypeScriptDemo
│ ├── .gitignore
│ ├── datatypes.js
│ ├── datatypes.ts
│ ├── package-lock.json
│ ├── package.json
│ ├── test.js
│ └── tsconfig.json
├── ZTM
├── AnimateCSS
│ └── index.html
├── CSS_Grid
│ ├── index.html
│ └── style.css
├── CSS_Layout
│ ├── img
│ │ ├── data_storage_2_2.png
│ │ ├── desktop_analytics_2.png
│ │ ├── files_2.png
│ │ ├── monitor_coding_2.png
│ │ ├── monitor_settings_2.png
│ │ ├── server_2_2.png
│ │ ├── server_3.png
│ │ ├── server_safe_2.png
│ │ └── undraw.png
│ ├── index.html
│ └── style.css
├── JS
│ ├── better_keyless_car.html
│ ├── better_keyless_car.js
│ ├── calculator.html
│ ├── calculator.js
│ ├── exercise1.txt
│ ├── exercise2.txt
│ ├── exercise3.txt
│ ├── exercise4.txt
│ ├── index.html
│ ├── keyless_car.html
│ ├── keyless_car.js
│ └── script.js
├── bootstrap
│ ├── index.html
│ └── style.css
├── first
│ ├── CSS
│ │ └── style.css
│ ├── HTML
│ │ ├── about.html
│ │ ├── index.html
│ │ └── login.html
│ └── images
│ │ └── bg-image.avif
├── landing_page
│ ├── header.jpg
│ ├── index.html
│ └── style.css
├── robot_animation
│ ├── index.html
│ └── style.css
└── second
│ ├── CSS
│ └── style.css
│ ├── HTML
│ └── index.html
│ └── picture+links.txt
└── images
├── full_stack.png
└── scenery.jpg
/HTML/html.md:
--------------------------------------------------------------------------------
1 | ## HTML
2 |
3 |
4 |
5 |
`tag 34 | - heading `
` tag 36 | - image `` tag 37 | 38 | 39 | ##### What are paired and unpaired tags? 40 | 41 | Paired tags have to be closed with a pairing tag, like `
` and `
`, `` and ``.
42 | Unpaired tags are those which didn't require to be closed with a pairing tag, like ``, `
` etc. 43 | 44 | ##### What is an `` tag? 45 | 46 | `
` tag is used to embed an image into your webpage using its source.
47 | It contains parameters like `src`, `alt`, `target` etc. 48 | 49 | to be continued... 50 | 51 | ##### What is CSS? 52 | 53 | It stands for Cascading Style Sheets. 54 | 55 | CSS is a style sheet language used for describing the presentation of a document written in a markup language such as HTML. 56 | 57 | 58 | ##### What is inline CSS? 59 | 60 | Inline CSS is defined by the `style` attribute used in the relevant element / tag. The style attribute can contain any CSS property. 61 | 62 | Properties of Style attribute: 63 | - width 64 | - height 65 | - color 66 | - background-color 67 | - margin 68 | - border 69 | - padding 70 | - etc. 71 | 72 | 73 | ##### What is Internal CSS? 74 | 75 | Internal CSS is written as simple CSS in `