1<html>
2<head>
3 <title>Document</title>
4</head>
5<body>
6 <p align='center'>this is some text in the center</p>
7 <!-- Align Images -->
8 <div id="Image-Centered" align='center'>
9 <img src='https://images.pexels.com/photos/1761279/pexels-photo-1761279.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500' alt='some image in the center'>
10 </div>
11 <!-- Without the 'ALIGN' Attribute -->
12 <p id='normal-text'>this is some text without alignment</p>
13 <img src='https://images.pexels.com/photos/1761279/pexels-photo-1761279.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500' alt='some image in the center'>
14 <!-- Got the difference? -->
15</body>
16</html>