Mayank Garg
16 |Lorem ipsum, dolor sit amet consectetur adipisicing elit. Incidunt, qui.
17 |├── way.jfif ├── 04-html-cheatSheet └── HtmlCheatSheet.pdf ├── 05-html-Notes ├── 04-html-practice-notes.pdf └── 01-Beginner-html-notes.md ├── 06-html-projects ├── Image Effect │ ├── assets │ │ └── images.jfif │ ├── html │ │ └── index.html │ └── css │ │ └── style.css ├── Image Reflection │ ├── assets │ │ └── images.jfif │ ├── html │ │ ├── index.html │ │ └── ImageReflection.html │ └── css │ │ └── style.css ├── Blog-Preview-Card │ ├── assets │ │ ├── images │ │ │ ├── favicon.png │ │ │ └── profile-image.webp │ │ └── svg │ │ │ └── illustration-article.svg │ ├── css │ │ └── style.css │ └── html │ │ └── index.html ├── Show the input │ ├── js │ │ └── script.js │ ├── html │ │ └── index.html │ └── css │ │ └── style.css ├── GlowingText │ ├── css │ │ └── style.css │ └── html │ │ └── index.html ├── Flipping Word │ ├── html │ │ └── Index.html │ └── css │ │ └── style.css ├── CircularRotation │ ├── html │ │ └── index.html │ └── css │ │ └── style.css ├── Loader Roatation │ ├── html │ │ ├── index.html │ │ └── loader.html │ └── css │ │ └── style.css ├── Calculators │ ├── advance-calculator │ │ ├── css │ │ │ └── style.css │ │ ├── html │ │ │ └── index.html │ │ └── js │ │ │ └── script.js │ ├── BasicCalculator │ │ ├── JS │ │ │ └── script.js │ │ ├── css │ │ │ └── styles.css │ │ └── html │ │ │ └── index.html │ ├── BasicCalculatorWithColor │ │ ├── css │ │ │ └── style.css │ │ └── html │ │ │ └── index.html │ └── Attractive Calculator │ │ ├── html │ │ └── index.html │ │ └── css │ │ └── style.css ├── Loading Effect │ ├── html │ │ ├── index.html │ │ └── LoadingEffect.html │ └── css │ │ └── style.css ├── NameHover │ ├── html │ │ └── index.html │ └── css │ │ └── style.css ├── To Do List │ ├── html │ │ └── index.html │ ├── js │ │ └── script.js │ └── css │ │ └── style.css ├── Quize web page │ ├── html │ │ └── index.html │ ├── css │ │ └── style.css │ └── js │ │ └── script.js └── Rotational │ ├── css │ └── style.css │ └── html │ └── index.html ├── 01-Introduction-to-HTML ├── 02-Basic-HTML-Tags │ ├── assets │ │ └── images │ │ │ ├── nature.jpg │ │ │ ├── example.jpg │ │ │ └── self-closing-tag.png │ ├── examples │ │ └── basic-html-tags.html │ └── documentation │ │ ├── README.md │ │ └── how-to-use-html-tags.md ├── 03-HTML-Structure-and-Syntax │ ├── assets │ │ └── images │ │ │ ├── nature.jpg │ │ │ └── self-closing-tag.png │ ├── examples │ │ └── structure-in-html.html │ └── documentation │ │ ├── html-code-explanation.txt │ │ ├── README.md │ │ └── what-is-html-structure.md ├── 01-Overview-of-html │ ├── examples │ │ └── overview-of-html.html │ └── documentation │ │ ├── explanation-of-overview.html-file.txt │ │ ├── HTML-overview.md │ │ └── README.md ├── 04-HTML-Forms-Basics │ ├── documentation │ │ ├── html-form-tag-usage.md │ │ ├── README.md │ │ └── html-index-code-walkthrough.txt │ ├── examples │ │ └── form-in-html.html │ └── assets │ │ └── styles │ │ └── style.css ├── 06-attributes-of-html-tags │ ├── example │ │ └── tags-with-attributes.html │ └── documentation │ │ ├── README.md │ │ ├── explanation-of-html-attributes-code.md │ │ └── attributes-in-html.md └── 05-html-tags-for-text-formatting │ ├── examples │ └── text-formating-in-html.html │ └── documentation │ ├── README.md │ └── text-formatting-tags-in-html.md ├── 03-Advanced-HTML-Techniques ├── 01-SVG-Introduction │ ├── assets │ │ ├── svg │ │ │ └── external-svg-logo.svg │ │ └── styles │ │ │ └── svg-styles.css │ ├── examples │ │ └── svg-example.html │ └── documentation │ │ ├── html-svg-explanation.md │ │ └── README.md ├── 02-Canvas-Introduction │ ├── examples │ │ └── canvas-in-html.html │ ├── assets │ │ ├── JavaScript │ │ │ └── canvas-script.js │ │ └── CSS │ │ │ └── canvas-styles.css │ └── documentation │ │ ├── html-code-explanation.md │ │ ├── README.md │ │ └── canvas-topic-description.md ├── 03-WebComponents-In-HTML │ ├── assets │ │ ├── CSS │ │ │ └── web-components-styles.css │ │ └── JavaScript │ │ │ └── web-components-script.js │ ├── examples │ │ └── web-components-examples.html │ └── documentation │ │ ├── web-components-html-explanation.md │ │ ├── web-components-css-explanation.md │ │ └── web-components-javascript-explanation.md ├── Canva-and-svg.html ├── Semantic.html └── web-storage.html ├── 02-Intermediate-HTML-Projects ├── 02-Responsive-Design │ ├── assets │ │ ├── images │ │ │ └── responsive-webpage-sample.jpg │ │ └── styles │ │ │ └── responsive-webpage-styles.css │ ├── examples │ │ └── responsive-webpage-example.html │ └── documentation │ │ ├── how-to-create-responsive-webpages-in-html.md │ │ ├── responsive-html-code-detailed-explanation.md │ │ ├── responsive-css-code-detailed-explanation.md │ │ └── responsive-web-design-overview.md ├── 01-Media │ ├── documentation │ │ ├── media-docs-readme.md │ │ ├── understanding-index-html-code.md │ │ └── media-guide-overview.md │ └── examples │ │ └── media-sample-page.html ├── 03-Advanced-Forms │ ├── assets │ │ └── styles │ │ │ └── advanced-html-forms-styles.css │ ├── examples │ │ └── responsive-html-form-example.html │ └── documentation │ │ └── README.md ├── html-symbols-emojis.html ├── tables.html ├── colors-and-layout.html └── forms-and-inputs.html ├── .gitattributes └── README.md /way.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/way.jfif -------------------------------------------------------------------------------- /04-html-cheatSheet/HtmlCheatSheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/04-html-cheatSheet/HtmlCheatSheet.pdf -------------------------------------------------------------------------------- /05-html-Notes/04-html-practice-notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/05-html-Notes/04-html-practice-notes.pdf -------------------------------------------------------------------------------- /06-html-projects/Image Effect/assets/images.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/06-html-projects/Image Effect/assets/images.jfif -------------------------------------------------------------------------------- /06-html-projects/Image Reflection/assets/images.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/06-html-projects/Image Reflection/assets/images.jfif -------------------------------------------------------------------------------- /06-html-projects/Blog-Preview-Card/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/06-html-projects/Blog-Preview-Card/assets/images/favicon.png -------------------------------------------------------------------------------- /01-Introduction-to-HTML/02-Basic-HTML-Tags/assets/images/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/01-Introduction-to-HTML/02-Basic-HTML-Tags/assets/images/nature.jpg -------------------------------------------------------------------------------- /06-html-projects/Blog-Preview-Card/assets/images/profile-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/06-html-projects/Blog-Preview-Card/assets/images/profile-image.webp -------------------------------------------------------------------------------- /01-Introduction-to-HTML/02-Basic-HTML-Tags/assets/images/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/01-Introduction-to-HTML/02-Basic-HTML-Tags/assets/images/example.jpg -------------------------------------------------------------------------------- /01-Introduction-to-HTML/02-Basic-HTML-Tags/assets/images/self-closing-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/01-Introduction-to-HTML/02-Basic-HTML-Tags/assets/images/self-closing-tag.png -------------------------------------------------------------------------------- /01-Introduction-to-HTML/03-HTML-Structure-and-Syntax/assets/images/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/01-Introduction-to-HTML/03-HTML-Structure-and-Syntax/assets/images/nature.jpg -------------------------------------------------------------------------------- /06-html-projects/Show the input/js/script.js: -------------------------------------------------------------------------------- 1 | function abc() { 2 | var heading = document.getElementById('heading'); 3 | var input = document.getElementById('input'); 4 | heading.innerHTML = input.value; 5 | } -------------------------------------------------------------------------------- /01-Introduction-to-HTML/03-HTML-Structure-and-Syntax/assets/images/self-closing-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/01-Introduction-to-HTML/03-HTML-Structure-and-Syntax/assets/images/self-closing-tag.png -------------------------------------------------------------------------------- /03-Advanced-HTML-Techniques/01-SVG-Introduction/assets/svg/external-svg-logo.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /02-Intermediate-HTML-Projects/02-Responsive-Design/assets/images/responsive-webpage-sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mayank-Garg7/Html/HEAD/02-Intermediate-HTML-Projects/02-Responsive-Design/assets/images/responsive-webpage-sample.jpg -------------------------------------------------------------------------------- /06-html-projects/GlowingText/css/style.css: -------------------------------------------------------------------------------- 1 | @keyframes glow { 2 | 0% { 3 | text-shadow: 0 0 5px #00f; 4 | } 5 | 50% { 6 | text-shadow: 0 0 20px #00f, 0 0 30px #00f; 7 | } 8 | 100% { 9 | text-shadow: 0 0 5px #00f; 10 | } 11 | } 12 | 13 | h1 span { 14 | animation: glow 2s infinite; 15 | } -------------------------------------------------------------------------------- /01-Introduction-to-HTML/01-Overview-of-html/examples/overview-of-html.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 |This is a paragraph of text.
13 | 14 | 15 | -------------------------------------------------------------------------------- /06-html-projects/Flipping Word/html/Index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Lorem ipsum, dolor sit amet consectetur adipisicing elit. Incidunt, qui.
17 |This is an example of a well-structured HTML document.
17 |Test your knowledge with this general knowledge quiz.
13 |