├── portfolio_JH
├── js
│ └── app.js
├── images
│ └── Lynda_mock_homepage.jpg
├── style.css
└── index.html
├── new-git-project
├── js
│ └── app.js
├── css
│ └── app.css
└── index.html
├── course-ajax
├── .gitignore
├── practice
│ └── tth-exercise
│ │ ├── udacity.js
│ │ ├── index.html
│ │ └── ajaxTTH.js
├── lesson-1-async-w-xhr
│ ├── app.js
│ └── index.html
├── lesson-3-async-w-fetch
│ ├── app.js
│ └── index.html
├── lesson-2-async-w-jQuery
│ ├── app.js
│ └── index.html
├── README.md
├── .stylelintrc
├── .eslintrc
└── css
│ └── styles.css
├── fend-project-memory-game
├── .gitignore
├── .gitattributes
├── CONTRIBUTING.md
├── README.md
├── js
│ └── app.js
├── css
│ └── app.css
└── index.html
├── RWDF_L2_Start
├── images
│ └── dog.jpg
└── index.html
├── tree-to-html
├── sample-tree.png
└── index.html
├── figures
├── redwoods_state_park.jpg
└── index.html
├── mockup-to-article
├── blog-mockup.pdf
├── reflections.txt
└── index.html
├── HTML_Syntax
├── html_research.html
├── make_list.html
├── treeToHTML.html
├── make_headers.html
├── make_a_button.html
├── mk_1st_elm.html
├── insertFig.html
└── mockupWebsite.html
├── writing-selectors
├── img
│ └── clay-pot.jpg
└── index.html
├── fend-animal-trading-cards-master
├── Fluid.jpg
├── dolphin.jpg
├── jQueryAPI.jpg
├── Column_Drop.jpg
├── Off_canvas.jpg
├── portfolio1.jpg
├── Layout_shifter.jpg
├── jQueryMethods.jpg
└── trading-card
│ ├── Princess.jpg
│ ├── card.html
│ └── styles.css
├── .gitignore
├── DOM_jQuery_basics
├── select_by_id
│ ├── app.js
│ └── index.html
├── select_by_tags
│ ├── app.js
│ └── index.html
├── select_by_class
│ ├── app.js
│ └── index.html
└── filters_quiz
│ ├── app.js
│ └── index.html
├── DOM_manipulation
├── modifyCSS
│ ├── app.js
│ └── index.html
├── togglingClassesQuiz
│ ├── app.js
│ └── index.html
├── collectValues
│ ├── app.js
│ └── index.html
├── toggleClassQuiz
│ ├── app.js
│ └── index.html
├── removeDOMel
│ ├── app.js
│ └── index.html
├── buildDOMFamilyTree
│ ├── index.html
│ └── app.js
├── changingAttr
│ ├── app.js
│ └── index.html
└── iteratingEachQuiz
│ ├── app.js
│ └── index.html
├── ES6
├── spread_op.js
├── shell_workshop.md
├── destruct_arrays.js
├── forOfLoop.js
└── restParam.js
├── arrays_quiz
├── udacyfamily.js
├── rightPrice.js
├── rainbowColors.js
├── harryPotter.js
├── joinTheCrew.js
├── buildingCrew.js
├── anotherTypeLoop.js
├── nestedLoops.js
└── gotBills.js
├── loops_quiz
├── fixError.js
├── changingLoop.js
├── juliaJames.js
├── findSeat.js
├── countdownLiftoff.js
├── bottlesOfJuice.js
└── factorial.js
├── link-to-a-stylesheet
├── css
│ └── styles.css
└── index.html
├── func_quiz
├── laugh.js
├── cry.js
├── anonLaugh.js
├── inline.js
├── laughNum.js
└── triangle.js
├── jQuery-eventListeners
├── jQueryEventListener
│ ├── app.js
│ └── index.html
└── project-pixel-art-maker-starter-master
│ ├── README.md
│ ├── styles.css
│ ├── index.js
│ └── index.html
├── object_quiz
├── menuItems.js
├── bankAccount2.js
├── donutsRevisited.js
├── bankAccount1.js
├── facebookFriends.js
└── umbrella.js
├── make_a_list
└── index.html
├── jQuerySampleSite
├── app.js
└── index.html
├── make_all_headers
└── index.html
├── flexbox
├── index.html
├── flexbox_layout.html
└── style.css
├── package.json
├── .eslintrc.json
├── conditionals_quiz
├── checking_balance.js
├── foodChain.js
├── index.js
├── icecream.js
├── backToSchool.js
└── whatWear.js
├── keyboard-shortcuts
├── finish.html
└── start.html
├── web-dev-blog
└── index.html
├── practice-keyboard-shortcuts
├── index.html
└── css
│ └── main.css
├── udacity-site-header
└── index.html
├── todo-list
└── index.html
├── media-queries
├── deconstructing_flexbox.html
└── whichStyle.html
├── patterns
└── pattern-mostly-fluid-quiz-blankcss.html
└── slack-card
└── index.html
/portfolio_JH/js/app.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/new-git-project/js/app.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/course-ajax/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/new-git-project/css/app.css:
--------------------------------------------------------------------------------
1 | body {
2 | background-color: #00cae4;
3 | }
--------------------------------------------------------------------------------
/fend-project-memory-game/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | .htmlhintrc
3 | .stylelintrc
4 | .eslintrc.json
5 |
--------------------------------------------------------------------------------
/RWDF_L2_Start/images/dog.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/RWDF_L2_Start/images/dog.jpg
--------------------------------------------------------------------------------
/tree-to-html/sample-tree.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/tree-to-html/sample-tree.png
--------------------------------------------------------------------------------
/figures/redwoods_state_park.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/figures/redwoods_state_park.jpg
--------------------------------------------------------------------------------
/mockup-to-article/blog-mockup.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/mockup-to-article/blog-mockup.pdf
--------------------------------------------------------------------------------
/HTML_Syntax/html_research.html:
--------------------------------------------------------------------------------
1 |
This text should be bold.
2 | And this text should have emphasis (italics).
3 |
--------------------------------------------------------------------------------
/writing-selectors/img/clay-pot.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/writing-selectors/img/clay-pot.jpg
--------------------------------------------------------------------------------
/fend-animal-trading-cards-master/Fluid.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/fend-animal-trading-cards-master/Fluid.jpg
--------------------------------------------------------------------------------
/portfolio_JH/images/Lynda_mock_homepage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/portfolio_JH/images/Lynda_mock_homepage.jpg
--------------------------------------------------------------------------------
/fend-animal-trading-cards-master/dolphin.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/fend-animal-trading-cards-master/dolphin.jpg
--------------------------------------------------------------------------------
/fend-animal-trading-cards-master/jQueryAPI.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/fend-animal-trading-cards-master/jQueryAPI.jpg
--------------------------------------------------------------------------------
/fend-animal-trading-cards-master/Column_Drop.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/fend-animal-trading-cards-master/Column_Drop.jpg
--------------------------------------------------------------------------------
/fend-animal-trading-cards-master/Off_canvas.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/fend-animal-trading-cards-master/Off_canvas.jpg
--------------------------------------------------------------------------------
/fend-animal-trading-cards-master/portfolio1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/fend-animal-trading-cards-master/portfolio1.jpg
--------------------------------------------------------------------------------
/fend-animal-trading-cards-master/Layout_shifter.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/fend-animal-trading-cards-master/Layout_shifter.jpg
--------------------------------------------------------------------------------
/fend-animal-trading-cards-master/jQueryMethods.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/fend-animal-trading-cards-master/jQueryMethods.jpg
--------------------------------------------------------------------------------
/fend-animal-trading-cards-master/trading-card/Princess.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/juliehutchinson001/udacity_google_scholarship/HEAD/fend-animal-trading-cards-master/trading-card/Princess.jpg
--------------------------------------------------------------------------------
/fend-project-memory-game/.gitattributes:
--------------------------------------------------------------------------------
1 | # Set the default behavior, in case people don't have core.autocrlf set.
2 | # https://help.github.com/articles/dealing-with-line-endings/
3 | * text=auto
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | */*.DS_Store
2 | *.DS_Store
3 |
4 | */*.vscode
5 | *.vscode
6 |
7 |
8 | **/node_modules/
9 | **/web-dev-blog/web-dev-blog.png
10 | web-dev-blog/web-dev-blog.png
11 |
12 | **/*.png
13 | */*.png
14 | *.png
--------------------------------------------------------------------------------
/fend-project-memory-game/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # How to contribute
2 |
3 | The files in this repository are used as the starting point for all students. Because we want students to write the majority of the code themselves, pull requests (most likely) will _not_ be merged into the project.
4 |
--------------------------------------------------------------------------------
/DOM_jQuery_basics/select_by_id/app.js:
--------------------------------------------------------------------------------
1 | /*
2 | For this quiz, use a jQuery class selector to grab all the element with
3 | id 'nav' on the page!
4 | */
5 |
6 | // don't change this variable!
7 | let nav;
8 |
9 | // your code goes here!
10 | nav = $('#nav');
11 |
12 | console.log(nav);
--------------------------------------------------------------------------------
/DOM_jQuery_basics/select_by_tags/app.js:
--------------------------------------------------------------------------------
1 | /*
2 | For this quiz, use a jQuery tag selector to grab all of the s on the page!
3 | */
4 |
5 | // Start with this variable! (don't delete it!)
6 | let listElements;
7 |
8 | // your code goes here!
9 | listElements = $('li');
10 |
11 | console.log(listElements);
--------------------------------------------------------------------------------
/DOM_jQuery_basics/select_by_class/app.js:
--------------------------------------------------------------------------------
1 | /*
2 | For this quiz, use a jQuery class selector to grab all of the
3 | elements of class 'article-item' on the page!
4 | */
5 |
6 | // don't change this variable!
7 | let articleItems;
8 |
9 | // your code goes here!
10 | articleItems = $('.article-item');
11 |
12 | console.log(articleItems);
--------------------------------------------------------------------------------
/DOM_manipulation/modifyCSS/app.js:
--------------------------------------------------------------------------------
1 | /*
2 | * For this quiz, change the font-size of all the
3 | * article-items to 20px!
4 | *
5 | * You must use jQuery's css() method!
6 | */
7 |
8 | // Start with this variable!
9 | var articleItems;
10 |
11 | // your code goes here!
12 | articleItems = $('.article-item').css('font-size', '20px');
--------------------------------------------------------------------------------
/ES6/spread_op.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Instructions: Use the spread operator to combine the
3 | * `fruits` and `vegetables` arrays into the `produce` array.
4 | */
5 |
6 | const fruits = ["apples", "bananas", "pears"];
7 | const vegetables = ["corn", "potatoes", "carrots"];
8 |
9 | const produce = [...fruits, ...vegetables];
10 |
11 | console.log(produce);
12 |
--------------------------------------------------------------------------------
/arrays_quiz/udacyfamily.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Programming Quiz: UdaciFamily (6-1)
3 | * Directions:
4 | * Create an array called udaciFamily and add "Julia", "James", and your
5 | * name to the array. Then, print the udaciFamily to the console using
6 | * console.log.
7 | */
8 |
9 | // your code goes here
10 | let udaciFamily = ["Julia", "James", "Julie"];
11 |
12 | console.log(udaciFamily);
--------------------------------------------------------------------------------
/loops_quiz/fixError.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Programming Quiz: Fix the Error 1 (4-5)
3 | *
4 | *
5 | *
6 | *
7 | * Directions:
8 | * Here is a for loop that's supposed to print the numbers 5 through 9. Fix the error!
9 | *
10 | * for (x < 10; x++) {
11 | * console.log(x);
12 | * }
13 | */
14 |
15 | // fix the for loop
16 | for (var x = 5; x < 10; x++) {
17 | console.log(x);
18 | }
19 |
--------------------------------------------------------------------------------
/ES6/shell_workshop.md:
--------------------------------------------------------------------------------
1 |
2 | Download `dictionary.txt`
3 | Enter a shell command to download https://tinyurl.com/zeyq9vc and save it as the file dictionary.txt. Remember to use the option to follow web redirects.
4 |
5 | Run this command on your own computer, too! You'll need to download this file for the next exercise.
6 |
7 | ---
8 |
9 | curl -o dictionary.txt -L 'https://tinyurl.com/zeyq9vc'
10 |
11 |
--------------------------------------------------------------------------------
/loops_quiz/changingLoop.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Programming Quiz: Changing the Loop (4-4)
3 | */
4 |
5 |
6 |
7 | // rewrite the while loop as a for loop
8 | var x = 9;
9 | while (x >= 1) {
10 | console.log("hello " + x);
11 | x = x - 1;
12 | }
13 |
14 | // ------------------------------------
15 |
16 |
17 |
18 | for (var x = 9; x >= 1 ; x--) {
19 | console.log("hello " + x);
20 |
21 | }
22 |
23 |
--------------------------------------------------------------------------------
/HTML_Syntax/make_list.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 | Create an unordered list! Make a list of the three web languages: HTML, CSS and JavaScript.
8 |
9 | - HTML
10 | - CSS
11 | - JavaScript
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/course-ajax/practice/tth-exercise/udacity.js:
--------------------------------------------------------------------------------
1 | const searchedForText = 'hippos';
2 | const unsplashRequest = new XMLHttpRequest();
3 |
4 | unsplashRequest.open('GET', `https://api.unsplash.com/search/photos?page=1&query=${searchedForText}`);
5 | unsplashRequest.onload = addImage;
6 | unsplashRequest.setRequestHeader('Authorization', 'Client-ID ');
7 | unsplashRequest.send();
8 |
9 | function addImage(){
10 | }
--------------------------------------------------------------------------------
/link-to-a-stylesheet/css/styles.css:
--------------------------------------------------------------------------------
1 | body {
2 | font-family: 'Roboto', sans-serif;
3 | }
4 | .container {
5 | display: flex;
6 | flex-wrap: wrap;
7 | }
8 | .menu {
9 | width: 15%;
10 | }
11 | .portfolio {
12 | width: 85%;
13 | }
14 | .item {
15 | width: 100%;
16 | clear: both;
17 | }
18 | .item img {
19 | float: left
20 | }
21 | .item span {
22 | display: table-cell;
23 | vertical-align: middle;
24 | height: 240px;
25 | }
--------------------------------------------------------------------------------
/DOM_manipulation/togglingClassesQuiz/app.js:
--------------------------------------------------------------------------------
1 | /*
2 | For this quiz, remove the class 'featured' from Article #2
3 | and add it to Article #3!
4 |
5 | You must use jQuery's toggleClass method!
6 | */
7 |
8 | // don't change these variable!
9 | let article2, article3;
10 |
11 | // your code goes here!
12 | article2 = $('.featured');
13 | article3 = article2.next();
14 |
15 | article2.toggleClass('featured');
16 | article3.toggleClass('featured');
17 |
18 |
--------------------------------------------------------------------------------
/func_quiz/laugh.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Programming Quiz: Laugh it Off 1 (5-1)
3 | *
4 | * Directions:
5 | * Declare a function called laugh() that returns "hahahahahahahahahaha!".
6 | * Print the value returned from the laugh() function to the console.
7 | *
8 | */
9 |
10 | // your code goes here
11 |
12 | function laugh() {
13 | var astring = "hahahahahahahahahaha!";
14 | return astring;
15 | }
16 |
17 | /* call the laugh function */
18 | console.log(laugh());
19 |
--------------------------------------------------------------------------------
/func_quiz/cry.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Programming Quiz: Cry (5-5)
3 | * Directions:
4 | * Write a named function expression that stores the function in a
5 | * variable called cry and returns "boohoo!". Don't forget to call the
6 | * function using the variable name, not the function name:
7 | *
8 | * cry();
9 | * Returns: boohoo!
10 | */
11 |
12 | // your code goes here
13 |
14 | var cry = function test(boo) {
15 | boo = "boohoo!";
16 |
17 | return boo;
18 | };
19 |
20 | cry();
--------------------------------------------------------------------------------
/course-ajax/lesson-1-async-w-xhr/app.js:
--------------------------------------------------------------------------------
1 | (function () {
2 | const form = document.querySelector('#search-form');
3 | const searchField = document.querySelector('#search-keyword');
4 | let searchedForText;
5 | const responseContainer = document.querySelector('#response-container');
6 |
7 | form.addEventListener('submit', function (e) {
8 | e.preventDefault();
9 | responseContainer.innerHTML = '';
10 | searchedForText = searchField.value;
11 | });
12 | })();
13 |
--------------------------------------------------------------------------------
/HTML_Syntax/treeToHTML.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 | This is a test
12 |
13 |
Did you pass the test?
14 |
Great Job! you passed all tests
15 |
16 |
17 |
--------------------------------------------------------------------------------
/course-ajax/lesson-3-async-w-fetch/app.js:
--------------------------------------------------------------------------------
1 | (function () {
2 | const form = document.querySelector('#search-form');
3 | const searchField = document.querySelector('#search-keyword');
4 | let searchedForText;
5 | const responseContainer = document.querySelector('#response-container');
6 |
7 | form.addEventListener('submit', function (e) {
8 | e.preventDefault();
9 | responseContainer.innerHTML = '';
10 | searchedForText = searchField.value;
11 | });
12 | })();
13 |
--------------------------------------------------------------------------------
/jQuery-eventListeners/jQueryEventListener/app.js:
--------------------------------------------------------------------------------
1 | /*
2 | For this quiz, use jQuery to set up an event listener. Your event listener must:
3 | 1. listen to the #my-button element
4 | 2. listen for a `click` event
5 | 3. perform the following actions when the button is clicked:
6 | a. remove the #my-button element from the DOM
7 | b. add the `success` class to the body
8 | */
9 |
10 | $('#my-button').on('click', function() {
11 | $('button').remove();
12 | $('body').addClass('success');
13 | });
--------------------------------------------------------------------------------
/DOM_manipulation/collectValues/app.js:
--------------------------------------------------------------------------------
1 | /*
2 | * For this quiz, use jQuery's val method to make live
3 | * changes to the 'Cool Articles' !
4 | *
5 | * The starter code below creates an event listener that
6 | * will run any time the input changes.
7 | * For more on events, check the instructor notes.
8 | */
9 |
10 | $('#input').on('change', function() {
11 | let val;
12 | let h1;
13 |
14 | // Your code goes here!
15 | val = $('#input').val();
16 | h1 = $('.articles').children('h1').text(val);
17 | });
--------------------------------------------------------------------------------
/course-ajax/lesson-2-async-w-jQuery/app.js:
--------------------------------------------------------------------------------
1 | /* eslint-env jquery */
2 |
3 | (function () {
4 | const form = document.querySelector('#search-form');
5 | const searchField = document.querySelector('#search-keyword');
6 | let searchedForText;
7 | const responseContainer = document.querySelector('#response-container');
8 |
9 | form.addEventListener('submit', function (e) {
10 | e.preventDefault();
11 | responseContainer.innerHTML = '';
12 | searchedForText = searchField.value;
13 | });
14 | })();
15 |
--------------------------------------------------------------------------------
/object_quiz/menuItems.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Programming Quiz: Menu Items (7-2)
3 | *
4 | * Directions:
5 | * Create a breakfast object to represent the following menu item:
6 | *
7 | * The Lumberjack - $9.95
8 | * eggs, sausage, toast, hashbrowns, pancakes
9 | * The object should contain properties for the name, price, and ingredients.
10 | *
11 | */
12 |
13 | // your code goes here
14 | let breakfast = {
15 | name: "The Lumberjack",
16 | price: 9.95,
17 | ingredients: ["eggs", "sausage", "toast", "hashbrowns", "pancakes"]
18 | };
19 |
--------------------------------------------------------------------------------
/loops_quiz/juliaJames.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Programming Quiz: JuliaJames (4-1)
3 | */
4 |
5 | var x = 1;
6 |
7 | while (x <= 20) {
8 | // check divisibility
9 | if (x % 3 === 0 && x % 5 === 0) {
10 | // print JuliaJames
11 | console.log("JuliaJames");
12 | } else if (x % 3 === 0) {
13 | // print Julia
14 | console.log("Julia");
15 | } else if (x % 5 === 0) {
16 | // print James
17 | console.log("James");
18 | } else {
19 | console.log(x);
20 | }
21 | // increment x
22 | x++;
23 | }
--------------------------------------------------------------------------------
/DOM_manipulation/toggleClassQuiz/app.js:
--------------------------------------------------------------------------------
1 | /*
2 | For this quiz, use a jQuery class selector and featuredArticle
3 | variable to toggle the 'featured' class!
4 | */
5 |
6 | // don't change this variable!
7 | let featuredArticle;
8 |
9 | // your code starts here!
10 | featuredArticle = $('li').toggleClass('featured'); //my soln
11 |
12 | // -------------------------------------------------- //
13 |
14 | // don't change this variable!
15 | let featuredArticle;
16 |
17 | featuredArticle = $('.featured') //udacity's soln
18 |
19 | featuredArticle.toggleClass('featured');
--------------------------------------------------------------------------------
/func_quiz/anonLaugh.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Programming Quiz: Laugh (5-4)
3 | *
4 | * Directions:
5 | * Write an anonymous function expression that stores a function in a variable called "laugh" and outputs the number of "ha"s that you pass in as an argument.
6 | *
7 | * laugh(3);
8 | *
9 | * >>> hahaha!
10 | *
11 | */
12 |
13 | var laugh = function(num) {
14 | var finalR = "";
15 |
16 | for(var i = 1 ; i <= num ; i++) {
17 | finalR += "ha";
18 | }
19 | return finalR + "!";
20 | } /* finish the function expression */
21 |
22 | console.log(laugh(10));
23 |
--------------------------------------------------------------------------------
/HTML_Syntax/make_headers.html:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
Add your headers below this paragraph element! Add an h1, h2, h3, and h4. You should see your new headers displayed in the preview pane.
7 |
8 | Hello
9 | How are you?
10 | How's your day going
11 | I hope you have a nice day!
12 | Don't forget to add some text to your headers. They won't display anything otherwise.
13 |
14 |
15 |