Programming Blog July 10th, 2023
here is where I have done so far: First, HTML: <!DOCTYPE html> <html> <head> <title>Numair Qureshi</title> <linkrel="stylesheet"href="styles.css"> </head> <body> <div> <h1>Numair Qureshi</h1> </div> <div> <imgsrc="photo.jpg"id="photo"alt="Photo"> </img> </div> <div> <h2>Favorite Music Artists</h2> <ul> <li>The 1975</li> <li>Explosions In The Sky</li> <li>Jimmy Eat World</li> <li>Kings of Leon</li> <li>Queen</li> </ul> </div> <div> <h2>Favorite Films</h2> <ol> <li>The Prestige</li> <li>Step Brothers</li> <li>Inception</li> <li>The Shawshank Redemption</li> <li>Good Will Hunting</li> </ol> </div> <div> <ahref="https://www.meta.com">My Profile</a> </div> </body> </html> Next, CSS: img { border-width: 2px; border-style: solid; border-color: blue; } h1 { color: blue; } h2 { color: grey; } div { margin: 4px; }