align image without css

Solutions on MaxInterview for align image without css by the best coders in the world

showing results for - "align image without css"
Brody
11 Apr 2016
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>