TASK: Design a page that marks up some content, and will display information about Mac and Windows. The final page should look similar in structure to the one shown below:
- Create some boilerplate HTML in your index.html file.
- Give your page a
<title>
- Create a
<h1>
tag of your choice to grab the users attention to the Mac or Windows - Create a subtitle for both Apple and Windows your page using your choice of
<h2>
through<h6>
tags. - Include a
<p>
element under each subtile describing the laptops you will be showcasing. - Include an
<ol>
element of the top 3 laptops for each branch. - Include an
<ul>
element with 3 prices of your laptops. These prices could be based on a real product or could be made up - Use a
<strong>
tag to bold some of the text. Check out the docs if you don't know how to use this! - Commit and push your final work back to GitHub!
- Find 3 images of Mac or Windows Laptops and add these files to your project folder.
- Render each of the images using an
<img>
tag. Be sure to addalt
attribute to each describing what the image is. - Include an
<a>
tag to Apple's Website or Microsoft Website - Create two
<div>
elements in your page that wrap around each of your sections. One for Mac and one for Windows:- Create one
<div>
withid="mac"
and one<div>
withid="windows"
- Give each
<div>
a class of"laptops"
<div>
Tag Docs- HTML Class Attribute Docs
- HTML ID Attribute Docs
- Create one