index.html

来自「altera epxa1的例子程序」· HTML 代码 · 共 52 行

HTML
52
字号

<HTML>
<HEAD>
	<TITLE>EPXA10 Webserver</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
	<BLOCKQUOTE>

	<H1>
	<IMG SRC="exc-nios.gif">
	Welcome to the Exalibur Webserver
	</H1>

	<TABLE><TR><TD WIDTH=640>
	<HR>
	<H3> About This Server </H3>
	
	

	<OL>
		<LI> <b><i>Static Pages.</i></b> The page is served directly from flash memory.
			(GIF images can also be served from flash memory.) </LI>
		<LI> <b><i>Template Pages.</i></b> The page is retrieved from flash memory, and
			code in the server replaces each occurence of %s with some new value. </LI>
		<LI> <b><i>Dynamic Pages.</i></b> The page is generated entirely by code
			in the server that displays memory contents.</LI>
		<LI> <b><i>404 Error Page.</i></b> If none of the previous three pages can
			be served for a particular URL, then an error page is generated.</LI>
		<LI> <b><i>Reconfiguration Page.</i></b> This page allows for uploading a new
			image.</LI>
	</OL>

	<HR>
	<H3> Example of Each Kind of Page </H3>

	<FONT SIZE="+1">
	<A HREF=static_page.html>A Static Page</A><BR>
	<A HREF=exc-nios.gif>A Static GIF Image</A><BR>
	<A HREF=template_page.html>A Template Page</A><BR>
	<A HREF=dynamic_page.html>A Dynamic Page</A><BR>
	<A HREF=a_bad_link.zzzhtml>A Bad Link</A><BR>
	<A HREF=recon_control.html>Reconfiguration Page</A><BR>
	<HR>


	</TD></TR></TABLE>

	</BLOCKQUOTE>
</BODY>
</HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?