HTML Fundamentals/ HTML Content Flashcards
How to make a bullet point list?
< ul >
< li > li >
< ul >
How would you name your website in terms of the browsers window?
< head >
< title > < /title >
< head >
How can you let web browser know that you are using the HTML language and to begin adding HTML structure and content what opening and closing tags do you write all your HTML code in?
< !DOCTYPE html >
< html > < /html >
Before you can add content that a browser will display what do you need add?
< body >
< /body >
How can you add links to other websites and how can you make it so when the URL is clicked a new browser opens up?
< a href=https://www.youtube.com/watch?v=riGtbrlCdxs> Link to playlist < /a >
< a href=”https://www.youtube.com/watch?v=riGtbrlCdxs” target=”_blank”> Link to playlist < /a >
How do you add images to your web page and what can you add to benefit visually impaired users?
<img></img>
How do you add line breaks so that it appears on a web page?
< br/ >