Kernel 0.94

This commit is contained in:
Rémy GIBERT 2020-06-07 19:18:05 +02:00
parent 62b2d1f9be
commit 3cdac2576c
7 changed files with 19 additions and 6 deletions

Binary file not shown.

Binary file not shown.

View File

@ -7,11 +7,11 @@ NEW
</head>
<body>
<h1>A2osX HTTPD Demo</h1>
<img src="A2osX.logo.png">
<h1>A2osX HTTPD Demo</h1>
<p>This is a paragraph.</p>
<a href="hello.html">Hello</a>
<a href="main.html">Main</a>
<br><a href="hello.html">Hello</a>
<br><a href="main.html">Main</a>
</body>
</html>

View File

@ -2,10 +2,12 @@ NEW
AUTO 3,1
<html>
<head>
<title>A2osx HTTPD Server Tests</title>
<title>A2osx HTTPD Server Tests</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h2>A2osX Web Server Main Test Page</h2>
<p>
This is the master test page for the <b>A2osX</b> Web Server. You can
use the links below to access additional test pages that contain more extensive
web pages designed to test that the <b>A2osX</b> HTTPD server process is capable of
@ -13,8 +15,9 @@ streaming all sorts of web content. The source for these pages can also be
used as reference for creating your own site hosted by <b>A2osX</b>. <i>This paragraph
was made <u>intentionally</u> long to check that word wrapping is occurring with window
resizes.</i>
<p>
</p>
<h3><b>A2osX</b> Tests</h3>
<p>
<br>
Standard Web Link ----> <a href="http://www.a2osx.com"><b>A2osX</b></a>
<br>
@ -25,6 +28,7 @@ Standard Web Link ----> <a href="http://www.a2osx.com"><b>A2osX</b></a>
<br><br><br><br>Composed with care by:
<cite>The US Boob</cite>
<br>&copy;2020 and beyond
</p>
</body>
</html>
MAN

BIN
SRV/WWW/scanlines.otf Normal file

Binary file not shown.

Binary file not shown.

View File

@ -2,13 +2,22 @@ NEW
AUTO 3,1
@font-face {
font-family: "ScanLines";
src: url('scanlines.ttf') format('truetype');
src: url('scanlines.otf') format('truetype');
}
body {
font-family: "ScanLines";
background-color: black;
}
h1 {
font-family: "ScanLines";
color: #000000;
background-color: #00ff00;
}
h2 {
font-family: "ScanLines";
color: #00ff00;
}
h3 {
font-family: "ScanLines";
color: #00ff00;
}