First Blog | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

First Blog

How do I use a picture image from my computer as the first image in the blog homework assignment?

5th Feb 2019, 9:53 PM
Crystal Sings
Crystal Sings - avatar
2 Answers
+ 3
The <img> tag is used to insert an image. It contains only attributes, and does not have a closing tag. <img src="img.jpg"> https://www.sololearn.com/learn/HTML/1030/
5th Feb 2019, 10:34 PM
Sudarshan Rai
Sudarshan Rai - avatar
0
<!DOCTYPE html> <html> <head> <title>Music for the soul</title> <link href="https://fonts.googleapis.com/css?family=Handlee" rel="stylesheet"> </head> <body> <!-- header start --> <div id="header" class="section"> <img alt="" class="img.circle"src="img.file:///Users/crystalmullins/Pictures/Photos%20Library.photoslibrary/Masters/2019/02/05/20190205-231631/Photo%20on%202-4-19%20at%206.41%20PM%20%234.jpg"> <p>Crystal Mullins</p> </div> <!-- header end --> <!-- About Me section start --> <div class="section"> <h1><span>About Me</span></h1> <p> Hey! I'm <strong>Crystal</strong>. Music has changed my world. It's not just about listening to music. Learning to sing gave me <i>confidence</i> and a way to communicate with others on a whole new level. I can also create new songs. I use my songs tell a story. Join me in this rewarding journey. You'll have fun, get help, and learn along the way! </p> <p class="quote">"Make music, not war"</p> </div> <!-- About Me section end --> <!-- My Schedule section start --> <div class="section"> <h1><span>My live stream Schedule</span></h1> <table> <tr> <th>Day</th> <th>Sunday Feb 10th Pacific</th> <th></th> <th></th> <th></th> <th></th> </tr> <tr> <td>6:00pm</td> <td class="selected">Listen</td> <td></td> <td></td> <td></td> <td></td> </tr> <tr> <td>6:05</td> <td></td> <td class="selected">Discuss</td> <
6th Feb 2019, 3:00 AM
Crystal Sings
Crystal Sings - avatar