diff --git a/1. HTML, CSS and JS/readme.md b/1. HTML, CSS and JS/readme.md
index a9bfedb..bfe88e3 100644
--- a/1. HTML, CSS and JS/readme.md
+++ b/1. HTML, CSS and JS/readme.md
@@ -1,51 +1,60 @@
# 1. HTML, CSS and JS
+
## Introduction
-HTML is a markup language for describing web documents (web pages).
+HTML is a markup language for describing web documents **(web pages)**.
-* HTML stands for Hyper Text Markup Language
-* A markup language is a set of markup tags
-* HTML documents are described by HTML tags
-* Each HTML tag describes different document content
+- HTML stands for
Hyper Text Markup Language
+- A markup language is a set of markup tags
+- HTML documents are described by HTML tags
+- Each HTML tag describes different document content
What is CSS?
-* CSS stands for Cascading Style Sheets
-* CSS describes how HTML elements are to be displayed on screen, paper, or in other media
-* CSS saves a lot of work. It can control the layout of multiple web pages all at once
-* External stylesheets are stored in CSS files
-You will also learn JavaScript. It is
-a programming language of the web that helps add interactivity to
+- CSS stands for .
+- CSS describes how HTML elements are to be displayed on screen, paper, or in other media
+- CSS saves a lot of work. It can control the layout of multiple web pages all at once
+- External stylesheets are stored in CSS files
+
+You will also learn JavaScript. It is
+a programming language of the web that helps add interactivity to
your web pages.
-It is useful since it is supported by all browsers and many web
+It is useful since it is supported by all browsers and many web
development tools like Node.js and frameworks like AngularJS or ReactJS
utilise JavaScript.
-## Learning Outcomes
-* Know basic HTML and CSS constructs to get you started to make a one pager
-* Become familiar with the use of the box model for web development
-* Understand what JavaScript is and when to use it.
-* Create and call JavaScript functions
-* Use JavaScript to display output
-* Understand how to create objects in JavaScript
-
-## Resources
+
+## Learning Outcomes:-
+
+- Know basic HTML and CSS constructs to get you started to make a one pager
+- Become familiar with the use of the box model for web development
+- Understand what JavaScript is and when to use it.
+- Create and call JavaScript functions
+- Use JavaScript to display output
+- Understand how to create objects in JavaScript
+
+## Resources:-
+
### Bootcamp Content
-* [Slide Deck](https://1drv.ms/p/s!AhUTdgNym7JMjCWPOxc8FrH2PxKV)
-* [Video](https://youtu.be/hDQB0Oum7L4)
-### Tools
-* [CodePen](http://codepen.io/pen/) - Experimenting with HTML, CSS and JS snippets.
+- [Slide Deck](https://1drv.ms/p/s!AhUTdgNym7JMjCWPOxc8FrH2PxKV)
+- [Video](https://youtu.be/hDQB0Oum7L4)
+
+### Tools:-
+- [CodePen](http://codepen.io/pen/) - Experimenting with HTML, CSS and JS snippets.
### Extra Learning Resources
-* [HTML (W3 Schools)](http://www.w3schools.com/html/html_intro.asp)
-* [CSS (W3 Schools)](http://www.w3schools.com/css/css_intro.asp)
-* [JS (W3 Schools)](http://www.w3schools.com/js/js_intro.asp)
+
+- [HTML (W3 Schools)](http://www.w3schools.com/html/html_intro.asp)
+- [CSS (W3 Schools)](http://www.w3schools.com/css/css_intro.asp)
+- [JS (W3 Schools)](http://www.w3schools.com/js/js_intro.asp)
# Part 1
+
## 1. HTML Structure.
First, let's create an empty HTML page. It will contain the head and the body.
+
```html
@@ -59,68 +68,75 @@ First, let's create an empty HTML page. It will contain the head and the body.