List your own 4 actors under line 13
of index.html
.
<ol>
tag for creating ordered lists and the <ul>
tag for unordered lists. For every item in your list, you need to use the <li>
tag to tell the browser that everything between the <li>
and </li>
tags represents one item in the list.
<ol>
<li>Jane</li>
<li>Abdul</li>
<li>Brianna</li>
</ol>
Lists are an important part of many web pages. To create a bulleted list, use the <ul>
tag. Then use the <li>
tag for each item in the list.
line 22
of index.html
. The <blockquote>
tag and its closing tag is used for quotes.
lines 45-46
of index.html
.
The <h1>
, <h2>
and <h3>
tags are used for headings. <h1>
is generally bigger than <h2>
, which is bigger than <h3>
, etc.
Make sure your new text is enclosed in the opening and closing heading tags.
line 8
of index.html
.
There are several ways to add images to web pages. Here you'll use the <img>
HTML tag. Remember to use the src
HTML attribute to set the link for the image.
Tip to find images: Go to https://www.pexels.com/ and search for an image you want to add to your website. Once you find your image, click on it. You will need the URL or address for the image and to get that, right-click on the expanded image and click on "Copy image location" (Or "Copy image URL" or "Copy image address", depending on your web browser). The link to your image is now copied and you can paste it anywhere you need it.
style.css
file and change a few CSS rules there.
line 12
.line 33
. Try adjusting the values and see what happensline 13
. Try changing it from "Trebuchet MS" to "Georgia".