Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 8 lesson 1

in this lesson cannot able to save
by

1 Answer

kshitijrana14
Try This one:

<!DOCTYPE html>
<html>
<head>
<title>CSS Images</title>
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 20px;
}
</style>
</head>
<body>
<img src="st.jpg" alt="image">
</body>
</html>

Login / Signup to Answer the Question.