css logo

Solutions on MaxInterview for css logo by the best coders in the world

showing results for - "css logo"
Erik
08 Jul 2020
1<!DOCTYPE html>
2<html>
3<head>
4<style>
5img {
6  border-radius: 8px;
7}
8</style>
9</head>
10<body>
11
12<h2>Rounded Images</h2>
13<p>Use the border-radius property to create rounded images:</p>
14
15<img src="paris.jpg" alt="Paris" width="300" height="300">
16
17</body>
18</html>