html網(wǎng)頁設(shè)計(jì)作業(yè)素材及代碼(html網(wǎng)站作業(yè))
本篇文章給大家談?wù)刪tml網(wǎng)頁設(shè)計(jì)作業(yè)素材及代碼,以及html網(wǎng)站作業(yè)對應(yīng)的知識(shí)點(diǎn),希望對各位有所幫助,不要忘了收藏本站喔。
本文目錄一覽:
- 1、求一個(gè)html網(wǎng)頁設(shè)計(jì)的代碼
- 2、HTML 網(wǎng)頁,按照題目內(nèi)容,編寫1個(gè)HTML網(wǎng)頁。詳細(xì)在圖里,求HTML代碼,急用
- 3、誰能幫我用HTML語言做一個(gè)簡單的網(wǎng)頁?代碼就行
- 4、html求制作一個(gè)簡單網(wǎng)頁代碼,只需要一些文字加張圖片
- 5、網(wǎng)頁設(shè)計(jì)常用HTML代碼
- 6、急求一個(gè)html成品網(wǎng)頁代碼、作業(yè)
求一個(gè)html網(wǎng)頁設(shè)計(jì)的代碼
關(guān)于這個(gè)網(wǎng)頁代碼的要求,只能夠是自己編寫、并進(jìn)行調(diào)試。別的任何人沒有那么多的時(shí)間和精力,幫助你進(jìn)行編程。
HTML 網(wǎng)頁,按照題目內(nèi)容,編寫1個(gè)HTML網(wǎng)頁。詳細(xì)在圖里,求HTML代碼,急用
文件名為temperature-conversion.html的代碼如下
!DOCTYPE html
html
head
h1 style="color:red;font-size:32px;"Temperature Conversions/h1
br/
/head
body
Author: CHEN Da Wenbr/
Student ID: 123456789dbr/
br/
bUse this form to convert celsius temperatures to fahrenheit:/bbr/
br/
table
form name="converter" action="temperature-converter.php" method="post"
trtdStarting temperature(Celsius):/td
tdinput type="text" name="start" value=""http://td/tr
trtdEnding temperature(Celsius):/td
tdinput type="text" name="end" value=""http://td/tr
trtdIncrement value:/td
tdinput style="width:100px;" type="text" name="increment" value=""http://td/tr
trtd colspan=2nbsp;/td/tr
trtd colspan=2input type="button" name="conversion" value="Display Conversion Table" onclick="converter.submit();"/
input type="button" name="clear" value="Clear" onclick="converter.reset();"http://td/tr
/form
/table
/body
/html
誰能幫我用HTML語言做一個(gè)簡單的網(wǎng)頁?代碼就行
html
head
title第一個(gè)html網(wǎng)頁/title
metacharset="utf-8"
/head
body
/body
/html
html
head
title第一個(gè)html網(wǎng)頁/title
metacharset="utf-8"
/head
body
table
tr
td第一行第一列/td
td第一行第二列/td
/tr
tr
td第二行第一列/td
td第二行第二列/td
/tr
/table
/body
/html
擴(kuò)展資料
HTML語言特點(diǎn)
1、HTML語法較弱。
在w3c制定的HTML5規(guī)范中,對于HTML5在語法結(jié)構(gòu)上的規(guī)格限制是較松散的,如、或在瀏覽器中具有同樣的功能,是不區(qū)分大小寫的。另外,也沒有嚴(yán)格要求每個(gè)控制標(biāo)記都要有相對應(yīng)的結(jié)束控制標(biāo)記。
2、HTML5編寫簡單。
即使用戶沒有任何編程經(jīng)驗(yàn),也可以輕易使用HTML來設(shè)計(jì)網(wǎng)頁,HTML5的使用只需將文本加上一些標(biāo)記(Tags)即可。
3、HTML標(biāo)記數(shù)目有限。
在w3C所建議使用的HTML5規(guī)范中,所有控制標(biāo)記都是固定的且數(shù)目是有限的。固定是指控制標(biāo)記的名稱固定不變,且每個(gè)控制標(biāo)記都已被定義過,其所提供的功能與相關(guān)屬性的設(shè)置都是固定的。
html求制作一個(gè)簡單網(wǎng)頁代碼,只需要一些文字加張圖片
具體步驟如下:
靜態(tài)網(wǎng)頁現(xiàn)階段主要采用DIV+CSS+Javascript來實(shí)現(xiàn),
第一步:在桌面上創(chuàng)建一個(gè)文本文件;
第二步:將文本名改為"test.html"(擴(kuò)展名為.html或者.htm即可,看不見擴(kuò)展名可以到);
第三步:文件名改好后,右擊打開方式,選擇記事本;
第四步:寫代碼。
html代碼寫成下圖這樣即可:
2.css代碼寫在下圖區(qū)域內(nèi):
3.javascript代碼寫在下圖區(qū)域內(nèi):
第五步:在這些代碼區(qū)域內(nèi)寫上你的代碼;
第六步:保存該文本文件;然后右擊打開選擇一個(gè)瀏覽器打開;如果出現(xiàn)“已限制網(wǎng)頁運(yùn)行腳本。。。”點(diǎn)擊允許。
代碼如下:
!doctype html
html
head
meta charset="UTF-8"
meta name="Generator" content="EditPlus?"
meta name="Author" content=""
meta name="Keywords" content=""
meta name="Description" content=""
titleDocument/title
/head
body
img src="這里填你的圖片名字,例如1.jpg,圖片跟html放在同一個(gè)文件夾下面就行"
img src="2.jpg"
img src="3.jpg"
p這里輸入你想要輸入的文字/p
/body
/html
網(wǎng)頁設(shè)計(jì)常用HTML代碼
網(wǎng)頁設(shè)計(jì)常用HTML代碼大全
HTML是用來描述網(wǎng)頁的一種語言。下面我為大家分享HTML代碼,希望對大家學(xué)習(xí)html代碼有幫助!
忽視右鍵
body oncontextmenu="return false"
或
body style="overflow-y:hidden"
1.如何幾秒后轉(zhuǎn)到別的頁面?
META HTTP-EQUIV="Refresh" CONTENT="時(shí)間;URL=地址"
2.點(diǎn)擊關(guān)閉窗口
a href="javascript:top.window.close();"點(diǎn)擊關(guān)閉窗口/a!
3.請問如何去掉主頁右面的滾動(dòng)條?
body scroll="no"
body style="overflow-y:hidden"
4.請問如何做到讓一個(gè)網(wǎng)頁自動(dòng)關(guān)閉.
html
head
OBJECT id=closes type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"
param name="Command" value="Close"
/object
/head
body onload="window.setTimeout(‘‘‘‘closes.Click()‘‘‘‘,10000)"
這個(gè)窗口會(huì)在10秒過后自動(dòng)關(guān)閉,而且不會(huì)出現(xiàn)提示. /body
如何在不刷新頁面的情況下刷新css?
style
button{ color:#000000;}
/style
button onclick=document.styleSheets[0].rules[0].style.color=‘‘‘‘red‘‘‘‘點(diǎn)擊按鈕直接修改style標(biāo)簽里button選擇符使按鈕改為紅色/button
請問如何讓網(wǎng)頁自動(dòng)刷新?
在head部記入META HTTP-EQUIV="Refresh" content="20"其中20為20秒后自動(dòng)刷新,你可以更改為任意值。
5.如何讓頁面自動(dòng)刷新?
方法一,用refresh
HTML 代碼片段如下:
head
meta http-equiv="refresh" content="5"
/head
5表示刷新時(shí)間
[Ctrl+A 全部選擇 提示:你可先修改部分代碼,再按運(yùn)行]
方法二,使用setTimeout控制
img src=/logo.gif
script
function rl(){
document.location.reload()
}
setTimeout(rl,2000)
/script
6.如何讓超鏈接沒有下劃線
在源代碼中的HEAD…/HEAD之間輸入如下代碼:
style type="text/css" !--
a { text-decoration: none}
-- /style
7.請問如何去掉IE的上下滾動(dòng)條?
body style=‘‘‘‘overflow:scroll;overflow-y:hidden‘‘‘‘
/body
8.怎樣才能把RealPlayer文件在網(wǎng)頁做一個(gè)試聽連接?
embed height=25 src=51js.rm type=audio/x-pn-realaudio-plugin width=50 autostart="false" controls="PlayButton"
9.如何用html實(shí)現(xiàn)瀏覽器上后退按鈕的功能?
a href="java script:history.go(-1)"點(diǎn)擊后退/a
或者
script history.back() /script
10.請問怎么在網(wǎng)頁中改變鼠標(biāo)的箭頭形狀?
HTML 代碼片段如下:
body
a href="#" style="cursor: auto;"auto/abr
a href="#" style="cursor: crosshair "crosshair /abr
a href="#" style="cursor: default "default /abr
a href="#" style="cursor: hand "hand /abr
a href="#" style="cursor: move "move /abr
a href="#" style="cursor: e-resize "e-resize /abr
a href="#" style="cursor: ne-resize "ne-resize /abr
a href="#" style="cursor: nw-resize"nw-resize/abr
a href="#" style="cursor: n-resize"n-resize/abr
a href="#" style="cursor: se-resize"se-resize/abr
a href="#" style="cursor: sw-resize"sw-resize/abr
a href="#" style="cursor: s-resize"s-resize/abr
a href="#" style="cursor: w-resize"w-resize/abr
a href="#" style="cursor: text"text/abr
a href="#" style="cursor: wait"wait/abr
a href="#" style="cursor: help"help/abr
/body
11.怎樣不使用頁面的緩存?即每一次打開頁面時(shí)不是調(diào)用緩存中的東西
META HTTP-EQUIV="Pragma" CONTENT="no-cache"
12.頁面打開時(shí)自動(dòng)彈出一個(gè)窗口的代碼怎么寫?
HTML 代碼片段如下:
html
head
titleUntitled Document/title
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
script language="B style="color:black;background-color:#A0FFFF"javascript/B"
!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//--
/script
/head
body bgcolor="#FFFFFF" text="#000000" onLoad="MM_openBrWindow(‘‘‘‘‘‘‘‘,‘‘‘‘,‘‘‘‘width=400,height=400‘‘‘‘)"
/body
/html
13.如何讓我的頁面出現(xiàn)一個(gè)會(huì)講話的小人?Merlin
HTML 代碼片段如下:
HTML
HEAD
TITLE默林/TITLE
META http-equiv=Content-Type content="text/html; charset=gb2312"
/HEAD
BODY
pOBJECT id=sims classid=CLSID:D45FD31B-5C6E-11D1-9EC1-00C04FD7081F
/OBJECT
SCRIPT
var MerlinID;
var MerlinACS;
sims.Connected = true;
MerlinLoaded = LoadLocalAgent(MerlinID, MerlinACS);
Merlin = sims.Characters.Character(MerlinID);
Merlin.Show();
Merlin.Play("Surprised");
Merlin.Speak("大家好");
Merlin.Play("GestureLeft");
Merlin.Think("我是默林!");
Merlin.Play("Pleased");
Merlin.Think("可愛嗎?");
Merlin.Play("GestureDown");
Merlin.Speak("哈哈!");
Merlin.Hide();
function LoadLocalAgent(CharID, CharACS){
LoadReq = sims.Characters.Load(CharID, CharACS);
return(true);
}
/SCRIPT
/p
p /p
p看此效果必須裝有office2000?。?!/p
/BODY
/HTML
14.在頁面中如何加入不是滿鋪的背景圖片,拉動(dòng)頁面時(shí)背景圖不動(dòng)
HTML 代碼片段如下:
htmlhead
STYLE
body {background-image:url(logo.gif);
background-repeat:no-repeat; background-position:center }
/STYLE
/head
body bgproperties="fixed"
/body
/html
[Ctrl+A 全部選擇 提示:你可先修改部分代碼,再按運(yùn)行]
background-repeat:no-repeat; 是讓背景圖不占滿整個(gè)頁面
body bgproperties="fixed" 是拉動(dòng)scroll時(shí)背景圖不動(dòng)
15.文本輸入框什么屬性能實(shí)現(xiàn)不可輸入?
HTML 代碼片段如下:
input type="text" name="textfield" disabled
或者
input type="text" name="textfield" readonly
16.如何禁止自己的頁面在別人的框架里打開?
把以下代碼加至你的head區(qū)
script
if (window.top!=self){
window.top.location=self.location
}
/script
17.如何實(shí)現(xiàn)首頁全屏幕顯示?
HTML 代碼片段如下:
html
bodyscript language="B style="color:black;background-color:#A0FFFF"javascript/B"
var coolw=642
var coolh=400
var coolhuang=window.open("","coolhuang","width="+coolw+",height="+coolh+",
fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0")
window.close()
/script/body/html
18.如何監(jiān)聽一個(gè)窗口被關(guān)閉了?
HTML 代碼片段如下:
body onunload="alert(‘‘‘‘你關(guān)閉了這個(gè)窗口‘‘‘‘)"
19.如何禁止Ctrl+N?
HTML 代碼片段如下:
body onkeydown=return(!(event.keyCode==78event.ctrlKey))
如何把頁面加入用戶的收藏夾?
HTML 代碼片段如下:
a href="B style="color:black;background-color:#A0FFFF"javascript/B:window.external.AddFavorite(‘‘‘‘‘‘‘‘,‘‘‘‘無憂腳本‘‘‘‘)"收藏?zé)o憂腳本/a
如何在我的'頁面中加入背景音樂?
IE: bgsound src="*.mid" loop=infinite
NS:embed src="*.mid" autostart=true hidden=true loop=true
*.mid你的背景音樂的midi格式文件
關(guān)于頁面轉(zhuǎn)換效果
meta http-equiv="page-enter" content="revealTrans(Duration=4,Transition=23)"
或
meta http-equiv="page-exit" content="revealTrans(Duration=4,Transition=23)"
說明:Transition=23是隨機(jī)效果,另可以選0-22任一數(shù)字固定某個(gè)效果
如何設(shè)定打開頁面的大小
HTML 代碼片段如下:
body onload="top.resizeTo(300,200);"!--(width,height)--
怎樣雙擊滾屏,單擊停止?
HTML 代碼片段如下:
html
head
title新網(wǎng)頁1/title
/head
body
script language"B style="color:black;background-color:#A0FFFF"javascript/B"
var currentpos,timer;
function initialize()
{
timer=setInterval("scrollwindow()",10);
}
function sc(){
clearInterval(timer);
}
function scrollwindow()
{
currentpos=document.body.scrollTop;
window.scroll(0,++currentpos);
if (currentpos != document.body.scrollTop)
sc();
}
document.onmousedown=sc
document.ondblclick=initialize
/script
pa/ppa/ppa/ppaa/ppaa/ppaa/p
paa/ppaa/ppaa/ppaa/ppaa/ppaa/p
paa/ppaa/ppaa/ppaa/ppaa/ppaa/p
paa/ppaa/ppaa/ppaa/ppa/p
/body
/html
如何讓body中的文字不被選中?
HTML 代碼片段如下:
body onselectstart="return false" aaa/body
如何讓彈出的窗口不能關(guān)閉?
在新開的窗口中加入如下代碼
body onunload=open(location.href)
/body
如何讓瀏覽器在保存頁面時(shí)保存失???
HTML 代碼片段如下:
NOSCRIPT
B style="color:black;background-color:#ffff66"IFRAME/B SRC="*.html"
/B style="color:black;background-color:#ffff66"IFRAME/B
/NOSCRIPT
表單中如何用圖片按鈕實(shí)現(xiàn) reset?
html
head
script
function aaa(){
document.forms[0].reset()
}
/script
/head
body
form
textarea rows="2" name="S1" cols="20"/textarea
input type="submit" values="提交" name="B1"
image src="logo.gif" onclick=aaa()
/form
/body/html
進(jìn)入網(wǎng)頁時(shí)彈出的信息對話框
body onLoad="window.alert(‘‘‘‘歡迎光臨本站‘‘‘‘)"
關(guān)閉窗口后彈出對話框
body onUnload="window.alert(‘‘‘‘謝謝你的光臨!歡迎下次再來!‘‘‘‘)"
告別提示
body onUnload= alert("再見,感謝你的訪問!")
右鍵菜單的制作
OBJECT id=menu type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"
PARAM name="Command" value="Related Topics,menu"
PARAM name="Item1" value="動(dòng)易;"
PARAM name="Item2" value="搜狐;"
PARAM name="Item3" value="新浪;"
PARAM name="Item4" value="網(wǎng)易;"
PARAM name="Item5" value="互動(dòng)學(xué)院;"
/OBJECT script if (document.all) document.body.onmousedown=new Function("if (event.button==2) menu.Click();") /script
下拉菜單
object id=HHCtrl type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11" PARAM name="Command" value="Related Topics,Menu" PARAM name="Item1" value="aspease;" PARAM name="Item2" value="byhu;" PARAM name="Item3" value="lzz;" /object a href=javascript:HHCtrl.Click() title="下拉菜單"下拉菜單/a
;
急求一個(gè)html成品網(wǎng)頁代碼、作業(yè)
您好,這樣的:
前提:隨便你在電腦里那個(gè)盤里新建文件夾,命名為:love,然后在這個(gè)文件夾里,分別建六個(gè)html文件,命名的話就像下面(如果真的不會(huì),就在文件夾里新建六個(gè)txt記事本,建好之后分別重命名為以下的名稱。)。
首先,主頁為:index.html,另外五個(gè)網(wǎng)頁為:index1.html,index2.html,index3.html,index4.html,index5.html。
網(wǎng)頁1代碼:文件名:index1.html
html
head/head
body
pi love you!/p
/body
/html
網(wǎng)頁2代碼:文件名:index2.html
html
head/head
body
pi hate you!/p
/body
/html
網(wǎng)頁3代碼:文件名:index3.html
html
head/head
body
pi miss you!/p
/body
/html
網(wǎng)頁4代碼:文件名:index4.html
html
head/head
body
pi miss you too!/p
/body
/html
網(wǎng)頁5代碼:文件名:index5.html
html
head/head
body
pi love you too!/p
/body
/html
最終要的是主頁代碼:index.html,代碼如下
html
head/head
body
img src="XXX.JPG"/
a href="index1.html"網(wǎng)頁1/a
a href="index2.html"網(wǎng)頁2/a
a href="index3.html"網(wǎng)頁3/a
a href="index4.html"網(wǎng)頁4/a
a href="index5.html"網(wǎng)頁5/a
/body
/html
html網(wǎng)頁設(shè)計(jì)作業(yè)素材及代碼的介紹就聊到這里吧,感謝你花時(shí)間閱讀本站內(nèi)容,更多關(guān)于html網(wǎng)站作業(yè)、html網(wǎng)頁設(shè)計(jì)作業(yè)素材及代碼的信息別忘了在本站進(jìn)行查找喔。
掃描二維碼推送至手機(jī)訪問。
版權(quán)聲明:本文由飛速云SEO網(wǎng)絡(luò)優(yōu)化推廣發(fā)布,如需轉(zhuǎn)載請注明出處。