如何用html写出一个静态的网页

如何用html写出一个静态的网页,第1张

如何用写出一个静态的网页

<><head><title>标题</title></head><body>网站的内容部分,大概框架就是这样了</body></>

如何搞一个静态的网页设计

会用Dreamweaver这个软体就可以了,百度一下peyoyo你就知道。

用Dreamweaver制作一个静态的网页

个性就自己做.不管好坏.就有个性了

如何用PSD做广告,静态的

用Photoshop软体设计就可以了,不过你本身要会用Photoshop软体才行,或是找个设计师帮你做了

如何用PS做出静态的飘动旗帜

用photoshop制作旗帜飘动效果,可以用变形,新增渐变,和时间轴设定动画帧及显示时间,用档案~储存为web格式~预览~图片另存为gif图片就可以了!详细制作过程建议网上搜有关教程学习!

谁能帮我做一个静态的网页,

网上有免费的留言本,你可以去申请个,静态的留言本不是不可能,可以用xml+做。至于其他页面,也不知道你是什么要求,光是一个连结用 <a href="留言本的地址">留言本</a>就行了。要好看点,可以去下载原始码或者模板,网上很多免费的。

怎么发给你,百度HI你

如何用ruby做一个静态网页页面

重复就行了。滑鼠往下拉或者第二个也重复。 HTML 框架例项 HTML 框架例项 1234

用VB写个网页程式,有静态的

Private Sub Command1_Click()

If Text1.Text <>"" Then

WebBrowser1.Navigate2 Text1.Text

WebBrowser1.Visible = True

Text2.Visible = False

End If

End Sub

JSP如何生成静态的页面?

public class HTMLMaker {

final static Object lock = new Object()

public static void makeHtml(String page, String filePath){

makeHtml(page,filePath,"UTF-8")

}

public static void makeHtml(String page, String filePath,String chartset) {

synchronized (lock) {

HttpURLConnection huc = null

BufferedReader br = null

BufferedWriter bw = null

try {

huc = (HttpURLConnection)new URL(page).openConnection()

System.setProperty("sun..client.defaultConnectTimeout", "30000")

System.setProperty("sun..client.defaultReadTimeout", "30000")

huc.connect()

InputStream stream = huc.getInputStream()

bw = new BufferedWriter(new OutputStreamWriter (new FileOutputStream(filePath),chartset))

br = new BufferedReader(new InputStreamReader(stream, chartset))

String line

while((line = br.readLine())!= null){

if(line.trim().length() >0){

bw.write(line)

bw.newLine()

}

}

}catch (Exception e) {

e.printStackTrace()

}finally {

try {

br.close()

bw.close()

huc.disconnect()

}catch (Exception e) {

e.printStackTrace()

}

}

}

}

}

引数解释:

page:jsp页面的网路地址,比如:localhost:8080/xxx/index.jsp

filePath:生成的档案的储存路径

chartset:编码,不填预设utf-8。

思想:

把jsp档案开流读入,再用输出流写入到目标档案。

示列代码

1.定义(template.htm)html模板页面

<html>

<head>

<title></title>

<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312">

</head>

<body >

<table $htmlformat[0] height="100%" border="0" width="100%" cellpadding="10" cellspacing="0" bgcolor="#eeeeee" style="border:1px solid #000000">

<tr>

<td width="100%" valign="middle" align="left">

<span style="color: $htmlformat[1]font-size: $htmlformat[2]">$htmlformat[3]</span>

</td>

</tr>

</table>

</body>

</html>

2.asp.net代码:

//---------------------读html模板页面到stringbuilder对象里----

string[] format=new string[4]//定义和htmlyem标记数目一致的数组

StringBuilder htmltext=new StringBuilder()

try

{

using (StreamReader sr = new StreamReader("存放模板页面的路径和页面名"))

{

String line

while ((line = sr.ReadLine()) != null)

{

htmltext.Append(line)

}

sr.Close()

}

}

catch

{

Response.Write("<Script>alert('读取文件错误')</Script>")

}

//---------------------给标记数组赋值------------

format[0]="background="/blog/bg.jpg""//背景图片

format[1]= "#990099"//字体颜色

format[2]="150px"//字体大小

format[3]= "<marquee>生成的模板html页面</marquee>"//文字说明

//----------替换htm里的标记为你想加的内容

for(int i=0i<4i++)

{

htmltext.Replace("$htmlformat["+i+"]",format[i])

}

//----------生成htm文件------------------――

try

{

using(StreamWriter sw=new StreamWriter("存放路径和页面名",false,System.Text.Encoding.GetEncoding("GB2312")))

{

sw.WriteLine(htmltext)

sw.Flush()

sw.Close()

}

}

catch

{

Response.Write ("The file could not be wirte:")

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6274277.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-19
下一篇 2023-03-19

发表评论

登录后才能评论

评论列表(0条)

保存