Computer Science, asked by ajayshaa69, 1 year ago

html code for creating a webpage having the images of mobile phones with their specifications


ajayshaa69: dont add links just give me all the html codes for creating the webpage
ajayshaa69: whats the stylesheet??
ajayshaa69: then add that also...and give me the whole html codes i have to do homnnework
ajayshaa69: give then whatever you know

Answers

Answered by Anonymous
2
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Mobiles</title>
       <style>
            ul { display: inline-block; list-style: none; }
       </style>
    </head>
<body>

    <h1>Mobiles and their specification</h1>

<!-- mobile one -->
    <ul>
        <li><h3>Name_Of_Mobile</h3></li>
        <li> <img src="link_of_image" alt=""> </li>
        <li>RAM: <strong>2GB</strong></li>
        <li>ROM: <strong>32GB</strong></li>
    </ul>

<!-- mobile two-->
    <ul>
        <li><h3>Name_Of_Mobile</h3></li>
        <li> <img src="link_of_image" alt=""> </li> 
        <li>RAM: <strong>2GB</strong></li>
        <li>ROM: <strong>32GB</strong></li>
    </ul>

<!-- mobile three-->
    <ul>
        <li><h3>Name_Of_Mobile</h3></li>
        <li> <img src="link_of_image" alt=""> </li> 
        <li>RAM: <strong>2GB</strong></li>
        <li>ROM: <strong>32GB</strong></li>
    </ul>

    </body>
</html>

copy and paste above code as .html file and open it in browser

Note: Please replace image links with actual image links and replace content with some realistic information.

ajayshaa69: its so confusing..i will try
ajayshaa69: yeah...thanks so much
Similar questions