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
Answers
Answered by
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.
<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.
Similar questions