align text without css

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

showing results for - "align text without css"
Tommaso
01 Mar 2019
1<html>
2<head>
3	<title>Document</title>
4</head>
5<body>
6  <!-- Align Text in Center -->
7  <p id='aligned-text' align='center'>this is some text in the center</p>
8  <!-- Align Images -->
9  <div id="Image-Centered" align='center'>
10    <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'>
11  </div>
12  <!-- Without the 'ALIGN' Attribute -->
13  <p id='normal-text'>this is some text without alignment</p>
14  <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'>
15  <!-- Got the difference? -->
16</body>
17</html>