0335342e00
First Draft of the Example Files
17 lines
246 B
HTML
17 lines
246 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Hello World</title>
|
|
<style>
|
|
h1 {
|
|
color :red;
|
|
font-size :3em;
|
|
font-family:Arial;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Hello there</h1>
|
|
</body>
|
|
</html>
|