時(shí)間:2023-10-16 14:24:01 | 來源:網(wǎng)站運(yùn)營
時(shí)間:2023-10-16 14:24:01 來源:網(wǎng)站運(yùn)營
大學(xué)生簡單個(gè)人靜態(tài)HTML網(wǎng)頁設(shè)計(jì)作品 DIV布局個(gè)人介紹網(wǎng)頁模板代碼 DW學(xué)生個(gè)人網(wǎng)站制作成品下載:精彩專欄推薦 ?? 作者簡介: 一個(gè)熱愛把邏輯思維轉(zhuǎn)變?yōu)榇a的技術(shù)博主 作者主頁: 【主頁—— 獲取更多優(yōu)質(zhì)源碼】 web前端期末大作業(yè): 【 畢設(shè)項(xiàng)目精品實(shí)戰(zhàn)案例 (1000套) 】 程序員有趣的告白方式:【 HTML七夕情人節(jié)表白網(wǎng)頁制作 (110套) 】 超炫酷的Echarts大屏可視化源碼:【 echarts大屏展示大數(shù)據(jù)平臺(tái)可視化(150套) 】 免費(fèi)且實(shí)用的WEB前端學(xué)習(xí)指南: 【 web前端零基礎(chǔ)到高級(jí)學(xué)習(xí)視頻教程 120G干貨分享】 關(guān)于作者: 歷任研發(fā)工程師,技術(shù)組長,教學(xué)總監(jiān);曾于2016年、2020年兩度榮獲CSDN年度十大博客之星。 十載寒冰,難涼熱血;多年過去,歷經(jīng)變遷,物是人非。 然而,對(duì)于技術(shù)的探索和追求從未停歇。 堅(jiān)持原創(chuàng),熱衷分享,初心未改,繼往開來!
Dreamweaver、HBuilder、Vscode 、Sublime 、Webstorm、Text 、Notepad++
等任意html編輯軟件進(jìn)行運(yùn)行及修改編輯等操作)。 其中: (1) html文件包含:其中index.html是首頁、其他html為二級(jí)頁面; (2) css文件包含:css全部頁面樣式,文字滾動(dòng), 圖片放大等; (3) js文件包含:js實(shí)現(xiàn)動(dòng)態(tài)輪播特效, 表單提交, 點(diǎn)擊事件等等(個(gè)別網(wǎng)頁中運(yùn)用到j(luò)s代碼)。<!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/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>我的主頁</title><link rel="stylesheet" type="text/css" href="style/style.css"/><script type="text/javascript" src="js/yi.js"></script></head><body><div id="outer"><table width="900" border="0" align="center" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <tr> <td width="900" height="90" valign="top"><!--DWLayoutEmptyCell--> </td> </tr></table><table width="900" border="0" align="center" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <tr> <td width="900" height="40" valign="top"><table class="nav" width="100%" height="40" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="100"> </td> <td width="100"> </td> <td width="100"> </td> <td width="100" class=""></td> <td width="100" class=""></td> <td width="100" class="td1"><a href="index.html">首頁</a></td> <td width="100" class="td2"><a href="about.html">個(gè)人簡介</a></td> <td width="100" class="td7"><a href="zuopin.html">我的作品</a></td> <td width="100" class="td4"><a href="music.html">音樂</a></td> </tr> </table></td> </tr></table><table width="900" border="0" align="center" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <tr> <td width="900" height="450" valign="top"> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="900" height="450"> <param name="movie" value="flash/qipao.swf" /> <param name="quality" value="high" /> <param name="wmode" value="transparent" /> <embed wmode="transparent" src="flash/qipao.swf" width="900" height="450" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"> </embed> </object> </td> </tr></table><table id="footer" width="900" border="0" align="center" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <tr> <td width="900" height="50" valign="top">版權(quán)所有:<a href="#" target="_blank">XXZ</a> </td> </tr></table></div></body></html>
/* CSS Document */*{}body{ font-size: 13px; background-image: url(../images/bg.JPG); background-repeat: no-repeat; background-position: center top;}a{ text-decoration:none; color:#333333;}#outer{ width:900px; margin:0 auto; position:relative;}.nav td a{display:block; width:100px; height:40px;}.nav td a:hover{ background:#000000; color:#FFFFFF; display:block; width:100px; height:40px; font-size:15px;}.nav .td1{ background:#FFCC00; text-align:center; line-height:40px;}.nav .td2{ background:#FF0000; text-align:center; line-height:40px;}.nav .td3{ background:#0066FF; text-align:center; line-height:40px;}.nav .td4{ background:#33CC00; text-align:center; line-height:40px;}.nav .td5{ background:#00CC33; text-align:center; line-height:40px;}.nav .td6{ background:#FF00FF; text-align:center; line-height:40px;}.nav .td7{ background:#0066FF; text-align:center; line-height:40px;}.about{ margin-top:20px;}.about td{ height:30px; line-height:30px;}.about td:hover{ background:#FFFFFF; color:#000000;}.stars{ position:absolute; top:150px;}.fireworks{ position:absolute; top:150px; left:115px; width:650px;}.photo{ margin-top:20px;}.photo td:hover{ background:#000000; color:#ffffff;}.frd{ margin-top:20px;}#footer{ text-align:center; color:#CCCCCC;}
請(qǐng) “ 點(diǎn)贊” “??評(píng)論” “ 收藏”
一鍵三連哦! 【 關(guān)注我| 獲取更多源碼 | 優(yōu)質(zhì)文章】
帶您學(xué)習(xí)各種前端插件、3D炫酷效果、圖片展示、文字效果、以及整站模板 、大學(xué)生畢業(yè)HTML模板 、期末大作業(yè)模板 、等! 「在這里有好多 前端 開發(fā)者,一起探討 前端 Node 知識(shí),互相學(xué)習(xí)」!關(guān)鍵詞:模板,學(xué)生,作品,靜態(tài),簡單,設(shè)計(jì),大學(xué)生,布局
客戶&案例
營銷資訊
關(guān)于我們
微信公眾號(hào)
版權(quán)所有? 億企邦 1997-2025 保留一切法律許可權(quán)利。