个人介绍网页模板html+css(个人介绍网页模板免费下载)

http://www.itjxue.com  2023-02-01 20:44  来源:未知  点击次数: 

求 一个简单的个人网页模板(html)

楼主说的太含糊了!

建议可以去TempleteMonsterChina(怪兽模板)中国区官方网站看一看,里面各种行业的网站模板,包括普通的静态展示网站模板,动态FLASH网站模板,joomla,mambo,WordPress,drupal等CMS系统及博客系统的网站模板,以及ZenCart,oscommerce等购物系统的网站模板!

您可以在搜索引擎中按照要求搜索即可,希望可以帮到你!

用html制作一个个人网页要求有五个链接,每页都有css格式

方法/步骤

1

CSS是由选择器加声明组成的。

比如:

h1{color:red;}

h1就是选择器,意思是只要遇到h1,就使用该CSS的规则

color:red; :这个事声明

color:这个是属性

red:这个是值

2

OK,我们先来分析选择器。

END

一.选择器

1

选择器的种类很多,各有各的作用。我们来一一讲解。

标签选择器

class选择器

id选择器

全局选择器

组合选择器

伪类选择器

2

标签选择器

顾名思义,HTML中有许多标签,而标签选择器就是用来给标签直接申明样式的,简单、实用、常用。

举例:

p{color:red;}

只要是p标签,其P标签内部的颜色,都是红色。

如图代码

headmeta http-equiv="Content-Type" content="text/html; charset=utf-8" /title无标题文档/titlestylep{ color:red;}/style/headbodyp嘿嘿哦嘿嘿呀哦嘿嘿哦/p/body

其中,style标签是样式标签,请将CSS放在其中

(这部分内容后续会介绍,这里只是先提一下)

3

看网页效果

4

class选择器

也叫做类选择器,直接说概念估计你也不明白,直接上例子吧。

举例:

.alsp{color:red;}

这就是一个class选择器,意思是有一种CSS的样式,其名字是alsp,谁想用谁用。

看代码:

headmeta http-equiv="Content-Type" content="text/html; charset=utf-8" /title无标题文档/titlestyle type="text/css".alsp{color:red;}/style/headbodyp class="alsp"嘿嘿哦嘿嘿呀哦嘿嘿哦/pol class="alsp"li嘿啥嘿/lili我想嘿嘿/lili专制各种不服/li/olp世界为亡,死不投降/p/body

5

看网页效果

通过.alsp定义一个class选择器。

在后面的代码中,哪个标签想用,就用class="alsp"去调用,就可以使用这件“衣服”来修饰自己了

6

ID选择器

ID和class很像,但是和class有一个区别。class像姓名,两个人是可以同名的,但是id像身份证,只有一个人可以使用。

例如:

#alsp{color:red;}

OK,上代码:

#alsp{color:red;}/style/headbodyp id="alsp"嘿嘿哦嘿嘿呀哦嘿嘿哦/polli嘿啥嘿/lili我想嘿嘿/lili专制各种不服/li/olp世界为亡,死不投降/p/body

7

看网页效果

只能有一个标签使用该id,或者说该标签专属ID

8

全局选择器

*{margin:0; padding:0;}

这个很简单,前面用个*来表示,整个网页都会使用。这句话也是网页基本都要添加的,什么意思呢?自己试试看吧。

9

组合选择器

组合选择,小编是非常喜欢使用的,原因无他,懒而已。他可以减少代码量,并且方便、易读。

不过组合选择器的组合方式比较多,但也多很好理解。

1)群模式

比如:

h1{color:red; font-size:14px;}

p{color:red; font-size:14px;}

a{color:red; font-size:14px;}

这三个虽然标签不同,但是样式是一模一样的,所以,可以这样写:

h1,p,a,{color:red; font-size:14px;}

2)继承模式

比如:

.alsp li{color:red;}

ul class=".alsp"

lifdf/li

/ul

li是在ul之中的,算是ul的后代。通过.alsp li确定li是属于调用alsp类选择器里的li标签,其他的li标签并不会使用该样式。

3)群模式(多元素并列选择器)

其实也是一种特殊的群模式

p.alsp{color:red;}

p class="alsp"p.alsp/p

a class="alsp"a.alsp/p

alsp仍然是一种class选择器,但是他只有在p的标签下被使用才生效。

所以,第一行生效,p.alsp字样变红,第二行不生效

10

伪类选择器

“伪”字暴露了他的本质,伪类选择器并不像其他选择器直接做用在标签上,但是他偏偏又是在标签上进行使用,所以称为“伪类选择器”。

伪类的作用,是作用在状态上。

一般情况正常运行,只有当达成条件的时候触发,才会执行伪类选择器所代表是css样式。

伪类选择器很多,但许多都是我们这辈子估计都用不到的。

OK,伪类选择器后续我会专门写一篇经验介绍,有点小多,这里也就不多说了。

END

二.在HTML中调用CSS

调用CSS的常用方法有3中

内样式

外样式

行间样式

内样式

直接看代码,如图所示

在head/head中,加入style/style,并将相关的CSS样式放在其中

外样式

直接看代码,如图所示:

link rel="stylesheet" type="text/css" href="index.css"

这里,href为css的路径。

意思是,你专门创建一个index.css的文件,里面放上CSS样式,和内样式的语法一模一样,只是专门找了一个文件存放而已。

4

行间样式

行间样式直接写在元素里面

例如:p style="color:#900"嘿嘿哦嘿嘿呀哦嘿嘿哦/p

直接在标签后面加上style

一般不要用,不过可以用来调试使用

用html做一个自我介绍

用Dreamweaver创建一个空白的HTML文件。

然后可以通过div对整个页面分块,然后把自我介绍内容和标题用不同区块来写出来就可以了。

也可以加上适当的css代码,使页面更加鲜明美观。

急求一份html、css、JavaScript的一个个人网页设计模板代码,整个网站设计页面至少3页????

百度搜索葡萄家园,第一个,这个网站是网页素材站,有个网页模板栏目,里面很多html+css+JavaScript网页模板,肯定是楼主你所需要的。希望可以帮到你。记得给分哦、

求一个简单的个人网页html模板

这种模板很多的,百度打开一个网页右键源代码就能找到了。

html xmlns=""headmeta http-equiv="Content-Type" content="text/html; charset=gb2312"

meta name="viewport" id="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"

meta name="apple-mobile-web-app-capable" content="yes"

meta name="apple-mobile-web-app-status-bar-style" content="black"

link href="{dede:global.cfg_templets_skin/}/images/apple-touch-icon-57.png" sizes="57x57" rel="apple-touch-icon"

link href="{dede:global.cfg_templets_skin/}/images/apple-touch-icon-72.png" sizes="72x72" rel="apple-touch-icon"

link href="{dede:global.cfg_templets_skin/}/images/apple-touch-icon-114.png" sizes="114x114" rel="apple-touch-icon"

title{dede:global.cfg_webname/}/title

meta name="keywords" content="{dede:global.cfg_keywords/}"

meta name="description" content="{dede:global.cfg_description/}"

link href="{dede:global.cfg_templets_skin/}/style/style.css" rel="stylesheet" type="text/css"

script type="text/javascript" src="{dede:global.cfg_templets_skin/}/style/jquery-1.9.1.js"/script

script type="text/javascript" src="{dede:global.cfg_templets_skin/}/style/theme_trust.js"/script

style type="text/css"

html,

body {

margin: 0;

padding: 0;

}

.iw_poi_title {

color: #CC5522;

font-size: 14px;

font-weight: bold;

overflow: hidden;

padding-right: 13px;

white-space: nowrap

}

.iw_poi_content {

font: 12px arial, sans-serif;

overflow: visible;

padding-top: 4px;

white-space: -moz-pre-wrap;

word-wrap: break-word

}

/style

script type="text/javascript" src="{dede:global.cfg_templets_skin/}/main.js"/script

script

jQuery(document).ready(function() {

jQuery('#openSidebar').click(function() {

jQuery('.wrapper').toggleClass('openNav');

});

jQuery('#menu a').click(function() {

jQuery('.wrapper').removeClass('openNav');

});

});

/script

script type="text/javascript" src="{dede:global.cfg_templets_skin/}/api"/scriptscript type="text/javascript" src="{dede:global.cfg_templets_skin/}/getscript"/scriptlink rel="stylesheet" type="text/css" href="{dede:global.cfg_templets_skin/}/bmap.css"

style type="text/css"

html,

body,

wrapper {

height: 100%;

}

/style

/head

body

div class="wrapper"

div class="sidebar"

div class="clearfix k1120"

div class="navBox" id="openSidebar"

a href="javascript:void(0)" class="navOpen"/a

/div

div id="menu"

ul class="clearfix"

lia href="#home" class="nav_home current"span首页br /bHome/b/span/a

/li

lia href="#services" class="nav_services"span服务范围br /bServices/b/span/a

/li

lia href="#case" class="nav_case"span案例展示br /bCase/b/span/a

/li

lia href="#about" class="nav_about"span关于我们br /bAbout us/b/span/a

/li

lia href="#news" class="nav_news"span新闻动态br /bNews/b/span/a

/li

lia href="#contact" class="nav_contact"span联系我们br /bContact us/b/span/a

/li

/ul

/div

/div

/div

div class="pageMain"

div id="header"

div class="k1120 clearfix"a href="{dede:global.cfg_basehost/}" id="logo"logo/a

/div

/div

div id="home" class="scrol-page"

div class="banner"

div class="b_1" style="background-position: 50% 0px;"

div class="k1120 clearfix"

div class="b_pic"

div class="mac" style="margin-top: 0px; opacity: 1;"img src="{dede:global.cfg_templets_skin/}/images/mac.png"

/div

div class="iphone" style="margin-top: 0px; opacity: 1;"img src="{dede:global.cfg_templets_skin/}/images/iphone.png"

/div

div class="ipad" style="margin-top: 0px; opacity: 1;"img src="{dede:global.cfg_templets_skin/}/images/ipad.png"

/div

/div

div class="b_text" style="margin-top: 0px; opacity: 1;"

{dede:global.cfg_ggg/}

/div

/div

/div

/div

div class="banner"

急求一份html、css、JavaScript的“个人主页”网页设计模板代码。

!--这个模版来自[最好模版-],需要更多模版请访问;

html

head

meta?http-equiv="Content-Type"?content="text/html;?charset=gb2312"

title┆假想敌┆-?颓废模板/title

script?language="JavaScript"?type="text/JavaScript"

!--

function?MM_reloadPage(init)?{??//reloads?the?window?if?Nav4?resized

??if?(init==true)?with?(navigator)?{if?((appName=="Netscape")(parseInt(appVersion)==4))?{

????document.MM_pgW=innerWidth;?document.MM_pgH=innerHeight;?onresize=MM_reloadPage;?}}

??else?if?(innerWidth!=document.MM_pgW?||?innerHeight!=document.MM_pgH)?location.reload();

}

MM_reloadPage(true);

//--

/script

style?type="text/css"

!--

BODY?{

SCROLLBAR-FACE-COLOR:?#3F2413;

SCROLLBAR-HIGHLIGHT-COLOR:?

#FFFFFF;

SCROLLBAR-SHADOW-COLOR:?#ffffff;

SCROLLBAR-3DLIGHT-COLOR:?#3F2413;

SCROLLBAR-ARROW-COLOR:?

#FFFFFF;

SCROLLBAR-TRACK-COLOR:?#3F2413;

SCROLLBAR-DARKSHADOW-COLOR:?#3F2413;

background-color:?#FFFFFF;

background-image:?url(bg.jpg);

}

--

/style

/head

body

div?id="Layer1"?style="position:absolute;?width:1000px;?height:628px;?z-index:1;?left:?0px;?top:?0px;"

??div?align="center"

????pnbsp;/p

????pnbsp;/p

????pnbsp;/p

????pnbsp;/p

????pimg?src="1.jpg"?width="650"?height="400"?border="0"?usemap="#Map2"

??????map?name="Map2"

????????area?shape="rect"?coords="321,379,490,399"?href=""?target="_blank"?alt="┆假想敌┆"

????????area?shape="rect"?coords="196,15,242,43"?href="home.htm"?target="main1"?alt="home"

??????/map

??????map?name="Map"

????????area?shape="rect"?coords="18,196,60,220"?href="home.htm"?target="main1"?alt="home"

??????/map

????/p

??/div

/div

?

div?id="Layer2"?style="position:absolute;?width:412px;?height:295px;?z-index:2;?left:?382px;?top:?203px;"

iframe?src="home.htm"?name="main1"?width="412"?height="295"

?frameborder="0"?scrolling="yes"?style="border:0px;"allowtransparency="true"/iframe/div

/body

/html

span?style="display:none;"这个模版来自,更多模版请访问a?href="";/anbsp;a?href="";/anbsp;a?href="";/a/span

(责任编辑:IT教学网)

更多

推荐安全产品文章