-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e2fc97c
commit a430a40
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Hints and Tips | ||
|
||
_you can use this quiz to build some basic debugging/study skills_ | ||
|
||
1. Use your examples! Use `inspect` on code we have seen, another website you have been to before, or even this page to see if you can find the thing the question is about | ||
2. Use your notes from during the lesson, always make note of new vocab terms when instructors say them. | ||
3. Try things on codepen to see if options do anyting or not | ||
|
||
|
||
|
||
|
||
<!-- | ||
Congrats! you used inspect and your reward is this list of facts: | ||
HTML is hypertext markup language and it described the structure of websites. | ||
Web standards are made by the WWW Consortium | ||
<h1> tags make the largest headings | ||
<br> makes a line break | ||
<p></p> wraps paragraphs, the first one is the open tag the one with the / is the end tag | ||
links are made with the <a></> tag and the URL is provided to the href attribute. | ||
Lists can be ordered or unordered and are made with <ol> or <ul> to wrap and <li> for each item | ||
--> | ||
|