diff --git a/contributors/training/html-and-css.md b/contributors/training/html-and-css.md
index 77bb7e4..a08b899 100644
--- a/contributors/training/html-and-css.md
+++ b/contributors/training/html-and-css.md
@@ -6,6 +6,112 @@
HTML is a markup language that provides the structure of the page, while CSS is used to control the presentation, formatting, and layout.
-## Slides
+## Web Application: Intro to HTML and CSS
-See [Introduction to HTML and CSS](https://docs.google.com/presentation/d/e/2PACX-1vRsRuQHKrnww0mOBF5iqUyisAyCHje9WYV4XRVzSlntk4wqeaUOB8OwO3Ajy9BPKhe-kS6UNoAwcH8e/pub?start=false&loop=false&delayms=60000) to find out more about these two languages.
+### HyperText Markup Language (HTML): Defines Structure and Content of a Webpage
+
+HTML is a **standard markup language** for describing web documents (web pages).
+
+In 1989, Tim Berners-Lee invented the Web with HTML as its publishing language.
+HTML (HyperText Markup Language) was created to help programmers describe the content on a website.
+
+HTML uses **nested tags** to help you add paragraphs, headers, pictures, bullets and other pieces of structure for **semantic markup** of a document.
+
+**Further reading:** [Introduction to HTML](https://www.w3schools.com/html/html_intro.asp), [HyperText Markup Language](https://developer.mozilla.org/en-US/docs/Web/HTML)
+
+#### HTML tags
+
+Content on a webpage is generally **enclosed** in tags that look like `
`.
+
+These tags demarcate HTML elements that are placed on the page.
+
+**Some basic tags:**
+
+The HTML document: ``
+
+**Page sections:** ``, ``, `