㈠ 求会用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搜网页关键字派行就可以找到的了。内容也是很多。粗略介绍给你听听。