This commit is contained in:
MrBrain295
2021-06-09 03:37:26 -05:00
committed by GitHub
parent e30dd87423
commit 77c41aa729
2 changed files with 12 additions and 0 deletions

View File

@@ -760,6 +760,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib
* [X D](x/X%20D.xd)
* [XBase++](x/XBase%2B%2B.prg)
* [XBase](x/XBase.dbf)
* [XHTML](x/XHTML.xhtml)
* [XL](x/XL.xl)
* [XLisp](x/XLisp.xlisp)
* [Xlogo](x/Xlogo.lgo)

11
x/XHTML.xhtml Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/TR/xhtml1" xml:lang="en" lang="en">
<head>
<title>Hello World</title>
<meta charset="UTF-8"/>
</head>
<body>
<p>Hello World</p>
</body>
</html>