㈠ 求會用Dreamweaver 做網頁的高手

我不是Dreamweaver
做網頁的高手
但我可以給你看看

㈡ 請做網頁的高手給點建議

我也是學網頁設計的
希望我可以給你啟示吧:
1.先弄清網站的基本概念。
這很容易,隨便拿本書到處都有
2.學學Office的Frontpage,
最好用2003版的
3.學學簡單的html語言
4.學習Fireworks
5.學習Dreamwaver
6.學習CSS
7.學學VBscripts
8.學習一下Flash
9.學習Access,了解資料庫的基本概念
10.學習ASP,最好先做個留言板試試,或投票系統什麼的
11.以後的路你就自己走了,走到這一步很難,
可是也很有成就感。我也是走到這一步,
下一步我想向電子商務網站發展,希望我們大家共同進步!

㈢ 求一個網頁製作高手用div+css做一個網頁布局 急 謝謝!!!!!!!!!!!

<! 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>
<style type="text/css">
#containt{ height:530px; width:400px; margin:0 auto; border:1px solid #000000;}
#top{ height:100px; width:380px; margin-top:7px; margin-left:9px;}
#top_left{ height:100px; width:138px; float:left; border:1px solid #000000; border-right:none;}
#top_right{ height:100px; width:238px; float:left; border:1px solid #000000;}
#content{ height:50px; width:380px; margin-top:5px; margin-left:9px; border:1px solid #000000;}
#bottom{ height:350px; width:380px; margin-top:5px; margin-left:9px;}
#bom_left{ height:350px; width:138px; float:left; border:1px solid #000000;}
#bom_right{ height:350px; width:235px; float:left; border:1px solid #000000; margin-left:3px;}
.b_r_div{ height:100px; width:68px; margin-left:6px; float:left; margin-top:5px; border:1px solid #000000;}
#b_r_bottom{ height:120px; width:225px; margin-left:5px; float:left; margin-top:5px; border:1px solid #000000;}
</style>
</head>
<body>
<div id="containt">
<div id="top">
<div id="top_left"></div>
<div id="top_right"></div>
</div>
<div id="content"></div>
<div id="bottom">
<div id="bom_left"></div>
<div id="bom_right">
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div id="b_r_bottom"></div>
</div>
</div>
</div>
</body>
</html>

㈣ 做網頁的高手來幫幫忙

回答那麼長做什麼?用這個:

<bgsound src=音樂地址 loop="-1">

這個是背景音樂的形式,在頁面上並不顯示,不知你要的是不是這個,一預覽就會播放

最好放在代碼中<head>與</head>之間,是因為讀取頁面時這段代碼靠前而使音樂的播放與頁面打開的節奏同步

㈤ 找個做網頁的高手

加我QQ,你給我加分。我給你做,我公司是做網站的。給你弄個也沒多長時間

㈥ 網頁製作高手救命啊

1,確定你網站的類型,
2.搜索網站類型的網站源碼,比如"個人網站源碼",最好是簡單的企業站.
3.下載源碼,在本機上裝好,
4.修改源碼,改成你想要的就行了.
好處是可以用更少的時間解決問題,學習別人的編程經驗.

㈦ 請教網頁製作高手幫做一個網頁~~

已經發到你的郵箱,查收一下!

記得加分!

㈧ 那位仁兄是做網頁的高手啊!!急需指導!!!!

FLASH 是人家知名品牌做網站才用那個

咱們一般的就用 Dreamweaver 就可以了

另外你要的那個特效 叫 飄動廣告特效

下面是代碼

<div id="img" style="position:absolute;">
<img src=""
onMouseover="pauseResume();">
</div>
<script LANGUAGE="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://www.smallrain.net -->
<!-- Begin
var step = 1;
var delay = 30;
var height = 0;
var Hoffset = 0;
var Woffset = 0;
var yon = 0;
var xon = 0;
var pause = true;
var interval;
var name = navigator.appName;
if(name == "Microsoft Internet Explorer") name = true;
else name = false;
var xPos = 20;
if(name) var yPos = document.body.clientHeight;
else var yPos = window.innerHeight;
function changePos() {
if(name) {
width = document.body.clientWidth;
height = document.body.clientHeight;
Hoffset = img.offsetHeight;
Woffset = img.offsetWidth;
img.style.left = xPos + document.body.scrollLeft;
img.style.top = yPos + document.body.scrollTop;
}
else {
height = window.innerHeight;
width = window.innerWidth;
Hoffset = document.img.clip.height;
Woffset = document.img.clip.width;
document.img.pageY = yPos + window.pageYOffset;
document.img.pageX = xPos + window.pageXOffset;
}
if (yon) {
yPos = yPos + step;
}
else {
yPos = yPos - step;
}
if (yPos < 0) {
yon = 1;
yPos = 0;
}
if (yPos >= (height - Hoffset)) {
yon = 0;
yPos = (height - Hoffset);
}
if (xon) {
xPos = xPos + step;
}
else {
xPos = xPos - step;
}
if (xPos < 0) {
xon = 1;
xPos = 0;
}
if (xPos >= (width - Woffset)) {
xon = 0;
xPos = (width - Woffset);
}
}
function start() {
if(name) img.visibility = "visible";
else document.img.visibility = "visible";
interval = setInterval('changePos()',delay);
}
function pauseResume() {
if(pause) {
clearInterval(interval);
pause = false;
}
else {
interval = setInterval('changePos()',delay);
pause = true;
}
}
start();
// End -->
</script>

㈨ 求網頁高手做一個網頁

已經傳你到你郵箱了,請點贊。謝謝!

㈩ 做網頁的高手

你可以用Dreamweaver做一個網頁設計你的網頁。頁面文字通過屬性那裡進行個性化修改就可以了。至於你說的設定關鍵字和meta就是在<head></head>標記內編輯的.這個比較多內容。既然是你的畢業設計你應該也懂html吧。這個你應該懂吧。靠前端,除了是收費商業用戶、頁面訪問量、還有一個就是關鍵字的設定。你google搜網頁關鍵字派行就可以找到的了。內容也是很多。粗略介紹給你聽聽。