├── TypeScript
└── TypeScriptDemo
│ ├── test.js
│ ├── .gitignore
│ ├── package.json
│ ├── datatypes.js
│ ├── datatypes.ts
│ ├── package-lock.json
│ └── tsconfig.json
├── README.md
├── HTML
├── html5.jpeg
├── html_facts.md
├── html_headings.html
├── html_embed_image.html
├── html_structure.html
├── i_tag.html
├── html_forms.html
├── html_paragraph.html
├── html_inline_css.html
├── html_lists.html
└── html.md
├── images
├── scenery.jpg
└── full_stack.png
├── ZTM
├── landing_page
│ ├── header.jpg
│ ├── style.css
│ └── index.html
├── CSS_Layout
│ ├── img
│ │ ├── files_2.png
│ │ ├── undraw.png
│ │ ├── server_2_2.png
│ │ ├── server_3.png
│ │ ├── server_safe_2.png
│ │ ├── data_storage_2_2.png
│ │ ├── monitor_coding_2.png
│ │ ├── desktop_analytics_2.png
│ │ └── monitor_settings_2.png
│ ├── index.html
│ └── style.css
├── first
│ ├── images
│ │ └── bg-image.avif
│ ├── HTML
│ │ ├── about.html
│ │ ├── login.html
│ │ └── index.html
│ └── CSS
│ │ └── style.css
├── bootstrap
│ ├── style.css
│ └── index.html
├── JS
│ ├── keyless_car.js
│ ├── index.html
│ ├── calculator.html
│ ├── exercise3.txt
│ ├── keyless_car.html
│ ├── better_keyless_car.html
│ ├── calculator.js
│ ├── exercise4.txt
│ ├── exercise2.txt
│ ├── better_keyless_car.js
│ ├── exercise1.txt
│ └── script.js
├── AnimateCSS
│ └── index.html
├── second
│ ├── picture+links.txt
│ ├── CSS
│ │ └── style.css
│ └── HTML
│ │ └── index.html
├── robot_animation
│ ├── index.html
│ └── style.css
└── CSS_Grid
│ ├── index.html
│ └── style.css
└── LICENSE
/TypeScript/TypeScriptDemo/test.js:
--------------------------------------------------------------------------------
1 | let fname = 'test'
2 |
3 | fname = 10
4 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # full-stack-development
2 |
3 |
4 |
--------------------------------------------------------------------------------
/TypeScript/TypeScriptDemo/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | npm-debug.log
3 | yarn-error.log
--------------------------------------------------------------------------------
/HTML/html5.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/HTML/html5.jpeg
--------------------------------------------------------------------------------
/images/scenery.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/images/scenery.jpg
--------------------------------------------------------------------------------
/images/full_stack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/images/full_stack.png
--------------------------------------------------------------------------------
/ZTM/landing_page/header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/ZTM/landing_page/header.jpg
--------------------------------------------------------------------------------
/ZTM/CSS_Layout/img/files_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/ZTM/CSS_Layout/img/files_2.png
--------------------------------------------------------------------------------
/ZTM/CSS_Layout/img/undraw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/ZTM/CSS_Layout/img/undraw.png
--------------------------------------------------------------------------------
/ZTM/first/images/bg-image.avif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/ZTM/first/images/bg-image.avif
--------------------------------------------------------------------------------
/ZTM/CSS_Layout/img/server_2_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/ZTM/CSS_Layout/img/server_2_2.png
--------------------------------------------------------------------------------
/ZTM/CSS_Layout/img/server_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/ZTM/CSS_Layout/img/server_3.png
--------------------------------------------------------------------------------
/ZTM/CSS_Layout/img/server_safe_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/ZTM/CSS_Layout/img/server_safe_2.png
--------------------------------------------------------------------------------
/ZTM/CSS_Layout/img/data_storage_2_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/ZTM/CSS_Layout/img/data_storage_2_2.png
--------------------------------------------------------------------------------
/ZTM/CSS_Layout/img/monitor_coding_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/ZTM/CSS_Layout/img/monitor_coding_2.png
--------------------------------------------------------------------------------
/ZTM/CSS_Layout/img/desktop_analytics_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/ZTM/CSS_Layout/img/desktop_analytics_2.png
--------------------------------------------------------------------------------
/ZTM/CSS_Layout/img/monitor_settings_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nickorzha/fullstack_development/HEAD/ZTM/CSS_Layout/img/monitor_settings_2.png
--------------------------------------------------------------------------------
/HTML/html_facts.md:
--------------------------------------------------------------------------------
1 | - HTML by default adds 8px margin in body tag.
2 | - When you inspect a page, the red strip is the margin, the blue strip is the content and green strip is padding.
--------------------------------------------------------------------------------
/ZTM/bootstrap/style.css:
--------------------------------------------------------------------------------
1 | .btn-danger {
2 | background-color: orange;
3 | }
4 |
5 | .btn-danger:hover {
6 | background-color: black;
7 | }
8 |
9 | .col {
10 | background-color: gray;
11 | border: 2px solid black;
12 | }
13 |
--------------------------------------------------------------------------------
/HTML/html_headings.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
Welcome to HTML webpage.
11 | 12 | -------------------------------------------------------------------------------- /ZTM/JS/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |lorem ipsum
19 |