blob: ef3fc845f734f2ae78dd30c6a9d5e88e6252bd31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Retro Styled Pure HTML</title>
</head>
<!-- Sets background color and text color natively via body attributes -->
<body bgcolor="#f0f4f8" text="#2d3748">
<!-- Table container used to mimic a centered layout box -->
<table align="center" width="600" bgcolor="#ffffff" cellpadding="20" style="border-collapse: collapse;">
<tr>
<td>
<!-- Heading with manual alignment -->
<h1 align="center">Retro Native Styling</h1>
<hr color="#e2e8f0" size="1">
<p>This layout uses structural tables and attributes to center and color the canvas rather than an external CSS document.</p>
<!-- Presentational table acting as a decorative callout block -->
<table width="100%" bgcolor="#e6fffa" cellpadding="15">
<tr>
<td>
<strong>Fun Fact:</strong> This page works identically in a modern browser and a browser from 1996!
</td>
</tr>
</table>
<p align="right">
<font size="2" color="#718096">Minimalist footer note</font>
</p>
</td>
</tr>
</table>
</body>
</html>
|