mirror of
https://github.com/boostorg/website.git
synced 2026-01-23 18:12:16 +00:00
26 lines
805 B
PHP
26 lines
805 B
PHP
<?php
|
|
# phpWebNotes - a php based note addition system
|
|
# Copyright (C) 2000-2002 Webnotes Team - webnotes-devel@sourceforge.net
|
|
# This program is distributed under the terms and conditions of the GPL
|
|
# See the files README and LICENSE for details
|
|
|
|
# --------------------------------------------------------
|
|
# $Id$
|
|
# --------------------------------------------------------
|
|
|
|
$page_title = 'Markup Languages';
|
|
$page = 'Markup Languages';
|
|
$page_parent = 'Webopedia';
|
|
$page_prev = 'Webopedia';
|
|
$page_next = 'XHTML';
|
|
|
|
include( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'sample_header.php' );
|
|
?>
|
|
<h1>Markup Languages</h1>
|
|
|
|
<p>This section explains different markup languages including: XHTML and XML.</p>
|
|
|
|
<?php
|
|
include( dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'sample_footer.php' );
|
|
?>
|