diff --git a/02_Day_Introduction_to_React/02_introduction_to_react.md b/02_Day_Introduction_to_React/02_introduction_to_react.md
index 04ba802..a478f99 100644
--- a/02_Day_Introduction_to_React/02_introduction_to_react.md
+++ b/02_Day_Introduction_to_React/02_introduction_to_react.md
@@ -109,7 +109,7 @@ JSX stands for JavaScript XML. JSX allows us to write HTML elements with JavaScr
```js
// JSX syntax
-// we don't need to use quotes with use JSX
+// we don't need to use quotes with JSX
const jsxElement =
I am a JSX element
const welcome = Welcome to 30 Days of React Challenge
@@ -183,7 +183,7 @@ We comment codes for different reasons and it is also go to know how to comment
#### Rendering JSX Element
-To render a JSX element to HTML document, we should first create an index HTML. The index.html is the only HTML file you will have in any React Application. That is why we call that every React Application is a single page application. Let us create an index.html file.
+To render a JSX element to HTML document, we should first create an index HTML. The index.html is the only HTML file you will have in any React Application. That is why we call that every React Application is a single page application. Let us create an index.html file. We can get started React in two ways either using CDN or create-react-app. The create-react-app create a React project boilerplate outbox and because of that many people do have a hard time understand how react works. In order to make things clear for absolute beginners I would like to start with a CDN. We use CDN only in this section and we will use the create-reap-app in the rest of the challenge and I also recommend you to use only create-react-app all the time.
```html
@@ -660,7 +660,7 @@ Instead of style object using regular styling method is more easier than the abo
rel="stylesheet"
/>
- React For Everyone
+ 30 Days Of React Challenge
+
+
+
+
+