Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

why is this not working ?

+7 votes
asked Jan 30, 2023 by sadhana pandey (270 points)
<!DOCTYPE html>
<html>
<head>
<style>
body {background-color : powderblue ;}
h2 {font-family : fantasy ; color : purple ; font-size : 200% ;}
h1 {font-family : fantasy ; color : blue ;}
p {font-family : cursive ; color : red ; font-size : 200% ; }
img { width : 60% ; height : 90%
</style>
</head>
<body>
<h1 style="text-align:center">HOW OUR BODY MOVES</h1>
<h2 style="text-align:center"> HOW DOES OUR BODY MOVE ? </h2>
<br>
<br>
<p> Well our body has many bones and muscules . Out of these , <mark>the voulantary muscules i.e.
the muscules we can move at our will</mark> , take turns pulling and tightening at our joint and move our body. </p>
<br>
<img scr = "https://www.w3schools.com/images/lamp.jpg" style = "width:400px"; "height:600px ";>
</body>
</html>

1 Answer

0 votes
answered Jan 31, 2023 by Lilia Carchilan (140 points)

<img scr = "https://www.w3schools.com/images/lamp.jpg" style = "width:400px"; "height:600px ";>

corect:

<img src = "https://www.w3schools.com/images/lamp.jpg" style = "width:400px"; "height:600px ";>

Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...