1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-10 05:25:14 +00:00
QB64-PE/tests/qbasic_testcases/pete/html/test.bas
Matthew Kilgore 9ee89d6ff4 Add QBasic tests
These tests use a variety of sample code (with some of the larger files
removed, so they are not complete!) and verifies that they all compile
successfully.
2022-04-28 23:00:07 -04:00

31 lines
979 B
QBasic

CLS
COLOR 10
PRINT " HTML About Page Generator:: William Chamberlain"
SLEEP 1
CLS
INPUT "Please enter your name (displayed at top of page):"; n$
INPUT "Page will be displayed in what color letters?"; c$
INPUT "Page background color will be:"; b$
INPUT "Please, state a font type:"; w$
INPUT "Please enter your e-mail:"; e$
INPUT "Specify an age:"; a$
INPUT "Please state your favorite food:"; f$
OPEN "c:\" + n$ + ".html" FOR OUTPUT AS #1
PRINT #1, "<HTML><HEAD><TITLE>" + n$ + "'s Page</TITLE></HEAD>"
PRINT #1, "<BODY text='" + c$ + "' bgcolor='" + b$ + "' font='" + w$ + "'><H1 align='center'>" + n$; "</H1>"
PRINT #1, "<br>"
PRINT #1, "Age:" + a$ + "<br>"
PRINT #1, "Fav. Food:" + f$ + "<br>"
PRINT #1, "<a href='mailto:" + e$ + "'>My Email</a>"
PRINT #1, "</BODY></HTML>"
CLOSE 1
CLS
COLOR 14
PRINT " Page processed, Thank you for using this program."
SLEEP 2
PRINT " Page will be found in E:\yourname.html"
SLEEP 3
END