Skip to content

Commit fbfe5b4

Browse files
committed
Updated readme
1 parent 047b3f3 commit fbfe5b4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ReadMe.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Resources
3939
- [Understanding REM Units](https://www.sitepoint.com/understanding-and-using-rem-units-in-css/)
4040
- [A Complete Guide to Flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/)
4141

42-
## 2. Create and Scaffold the Game Page
42+
## 2. Create and Style the Game Page
4343

4444
In this video, we will create the Game Page and display static question and answer information. Eventually, we will load questions from an API, but for now, we will hard code one question so to establish styling.
4545

@@ -75,15 +75,15 @@ In this video, we will create a Heads Up Display (HUD) for our quiz app. This wi
7575

7676
In this video, we will take our HUD one step further by creating a visual progress bar to track the user's progress through the questions.
7777

78-
## 7. Create and Scaffold the End Page
78+
## 7. Create and Style the End Page
7979

8080
In this video, we will create our End page where we will display the user's achieved score. This screen will provide a form for saving the score and links for playing again or going home.
8181

8282
Resources
8383

8484
- [Local Storage](https://www.w3schools.com/jsref/prop_win_localstorage.asp)
8585

86-
## 8. Same High Scores in Local Storage
86+
## 8. Save High Scores in Local Storage
8787

8888
In this video, we will save and maintain a high scores array in Local Storage. To do this, we will need to JSON.stringify() and JSON.parse() to convert our high score array to a string and visa versa.
8989

@@ -102,7 +102,7 @@ Resources
102102
- [Array Map](https://www.w3schools.com/jsref/jsref_map.asp)
103103
- [Array Join](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/join)
104104

105-
## 10. Fetch Questions From Local JSON File
105+
## 10. Fetch API to Load Questions From Local JSON File
106106

107107
In this video, we will move our sample questions from a hard coded array to an external .json file. This will help clean up our Game.js file and set ourselves up to request questions from an API in the next video.
108108

@@ -111,7 +111,7 @@ Resources
111111
- [How to Use the Fetch API](https://scotch.io/tutorials/how-to-use-the-javascript-fetch-api-to-get-data)
112112
- [Promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise_)
113113

114-
## 11. Fetch API Questions from Open Trivia API
114+
## 11. Fetch API to Load Questions from Open Trivia API
115115

116116
In this video, we will use Fetch to request a list of questions from the Open Trivia DB API.
117117

@@ -122,7 +122,7 @@ Reources
122122
- [Array Map](https://www.w3schools.com/jsref/jsref_map.asp)
123123
- [Array For Each](https://www.w3schools.com/jsref/jsref_foreach.asp)
124124

125-
## 12. Add a Spinning Loader
125+
## 12. Create a Spinning Loader
126126

127127
In this video, we will create a simple spinning loader in CSS that will be displayed until we are finished requesting/loading questions from the API.
128128

0 commit comments

Comments
 (0)