Creating Your Own HTML: Creating Links and Formatting Text Flashcards
1
Q
create a link
A
- <a>Go to Waterfox</a> (or whatever browser you are using)
- place between body tags
- important to type link exactly as you want it to be
2
Q
Which one of the following is the appropriate ways to create a link to another webpage?
A
- <a>UC Davis</a>
3
Q
create white space in a paragraph
A
- add <br></br>
4
Q
bold words
A
- <strong></strong>
- change format so word appears bold
- <b></b> does the same thing (may not work so it’s better to use strong)
5
Q
italics
A
- <em></em>
6
Q
Which one of the following tag pairs is the preferred way to make text appear bold within a paragraph tag?
A
- <strong></strong>