html test page example

Solutions on MaxInterview for html test page example by the best coders in the world

showing results for - "html test page example"
Sophia
04 Jan 2017
1<html>
2<head>
3<title>       </title>
4<style type="text/css">
5<!--
6h1	{text-align:center;
7	font-family:Arial, Helvetica, Sans-Serif;
8	}
9
10p	{text-indent:20px;
11	}
12-->
13</style>
14</head>
15<body bgcolor = "#ffffcc" text = "#000000">
16<h1>Hello, World!</h1>
17
18<p>You can modify the text in the box to the left any way you like, and
19then click the "Show Page" button below the box to display the
20result here. Go ahead and do this as often and as long as you like.</p>
21
22<p>You can also use this page to test your Javascript functions and local
23style declarations. Everything you do will be handled entirely by your own
24browser; nothing you type into the text box will be sent back to the
25server.</p>
26
27<p>When you are satisfied with your page, you can select all text in the
28textarea and copy it to a new text file, with an extension of
29either <b>.htm</b> or <b>.html</b>, depending on your Operating System.
30This file can then be moved to your Web server.</p>
31
32</body>
33</html>
34