简单静态网页的设计

article/2025/9/25 7:22:50

总体思路:先构思好一个图书馆的框架


以这个框架为主体,进行拓展,丰富其他内容:




只是简单地做了四个页面,“我的图书馆”页面可以采用同样的方式编写出来。

主体的编程:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>上海图书馆</title>
<style type="text/css">
*{margin:0;padding:0;}
body{background-color:#CCC;}
.clear{clear:both;}

#container{
background-color:#F0BBBC;
height:510px;
width:1500px;
margin:auto;}

#picture{height:470px; margin:0px;}

#label{background-color:#CEDDEC; height:30px;}

</style>
</head>

<body>
<div id="container">

<div id="picture"><img src="imagines/432x324c.jpg" width="1500" height="471" alt=""/></div>
  <div id="label">
  <table width="1500" border="1">
  <tbody>
    <tr>
      <td width="50" height="30" align="center"><a href="#"><font color="blue">首页</a></td>
      <td width="50" align="center"><a href="Untitled-2.html">资源</a></td>
      <td width="50" align="center"><a href="Untitled-3.html">服务</a></td>
      <td width="50" align="center"><a href="Untitled-4.html">关于本馆</a></td>
      <td width="50" align="center"><a href="#">我的图书馆</a></td>
    </tr>
  </tbody>
</table>
  </div>

</div>
</body>

</html>

拓展内容:

(1)页面“首页”程序代码:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>上海图书馆</title>
<style type="text/css">
*{margin:0;padding:0;}
body{background-color:#CCC;}
.clear{clear:both;}

#container{
background-color:#F0BBBC;
height:510px;
width:1500px;
margin:auto;}

#picture{height:470px; margin:0px;}

#label{background-color:#CEDDEC; height:30px;}

#container2{
background-color:#E6ECCC;
width:800px;
height:340px;
margin:20px auto;
}

#content{
background-color:#E1C7F3;
width:1000px;
height:100px;
margin:20px auto;
}

a {
color: #F3ADAE;
}
a:link {
color: #0B0B0B;
text-decoration: none;
}
a:visited {
color: #0B0B0B;
text-decoration: none;
}
a:hover {
color: #17E515;
text-decoration: none;
}
a:active {
text-decoration: none;
}
</style>
</head>


<body>
<div id="container">
<div id="picture"><img src="imagines/432x324c.jpg" width="1500" height="471" alt=""/></div>
  <div id="label">
  <table width="1500" border="1">
  <tbody>
    <tr>
      <td width="50" height="30" align="center"><a href="#"><font color="blue">首页</a></td>
      <td width="50" align="center"><a href="Untitled-2.html">资源</a></td>
      <td width="50" align="center"><a href="Untitled-3.html">服务</a></td>
      <td width="50" align="center"><a href="Untitled-4.html">关于本馆</a></td>
      <td width="50" align="center"><a href="#">我的图书馆</a></td>
    </tr>
  </tbody>
</table>


  </div>
</div>
<div id="container2"><img src="imagines/veer-100281520.jpg" width="799" height="339" alt=""/></div>
<div id="content">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;上海图书馆由上海图书馆与上海科学技术情报研究所合并组成,是一个研究型公共图书馆,建于1952年7月,原址位于南京西路325号,后搬迁至淮海中路1555号。1996年12月20日,上海图书馆新馆正式对外开放,成为一个大型综合性研究型公共图书馆,跻身于中国十大图书馆之列。上海图书馆藏中外文献5400余万册(件),其中古籍善本、碑帖尺牍、名人手稿、家谱方志、西文珍本、唱片乐谱、近代报刊及专利标准尤具特色。建筑面积总计12.7万平方米,拥有各类阅览室、学术活动室、报告厅、展览厅等空间。
</div>
</body>

</html>

(2)页面“资源”程序代码:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>上海图书馆</title>
<style type="text/css">
*{margin:0; padding:0;}
body{background-color:#CCC;}
.clear{clear:both;}

#container{
background-color:#F0BBBC;
height:510px;
width:1500px;
margin:auto;}

#picture{height:470px; margin:0px;}

#label{background-color:#CEDDEC; height:30px;}

#container2{
background-color:#E6ECCC;
width:1500px;
height:800px;
margin:20px auto;
}

#head1{
background-color:blue;
width:238px;
height:30px;}
#head2{background-color:#FBB9B9; width:238px; height:270px;}
#head5{
background-color:#F1C93C;
width:238px;
height:30px;
}
#head3{background-color:#FBB9B9; width:238px; height:180px;}
#head4{background-color:#FBB9B9; width:238px; height:180px;}
#head6{height:140px;}

#enter{height:60px;}

#contest{
background-color: #F7EFEF;
height: 750px;
font-size: 18px;
}
a:link {
color: #0B0B0B;
text-decoration: none;
}
a:visited {
color: #0B0B0B;
text-decoration: none;
}
a:hover {
color: #44DD17;
text-decoration: none;
}
a:active {
text-decoration: none;
}
</style>
</head>


<body>
<div id="container">
<div id="picture"><img src="imagines/432x324c.jpg" width="1500" height="471" alt=""/></div>
  <div id="label">
<table width="1500" border="1">
  <tbody>
    <tr>
      <td width="50" height="30" align="center"><a href="Untitled-1.html">首页</a></td>
      <td width="50" align="center"><a href="#"><font color="blue">资源</font></a></td>
      <td width="50" align="center"><a href="Untitled-3.html">服务</a></td>
      <td width="50" align="center"><a href="Untitled-4.html">关于本馆</a></td>
      <td width="50" align="center"><a href="#">我的图书馆</a></td>
    </tr>
  </tbody>
</table>
</div>
<div id="container2">
<table width="1455" height="463" border="1">
  <tbody>
    <tr>
      <td width="238" height="428">
      <div id="head1"><p align="center">资&nbsp;&nbsp;&nbsp;&nbsp;源</p></div>
      <div id="head2">
      <div id="head5"><p align="left">电子资源</p></div>
      <p><a href="#">&gt;&gt;数据库导航</a></p>
      <p><a href="#">&gt;&gt;免费资源</a></p>
      <p><a href="#">&gt;&gt;试用数据库</a></p>
      <p><a href="#">&gt;&gt;电子期刊导航</a></p>
      <p><a href="#">&gt;&gt;电子图书</a></p>
      <p><a href="#">&gt;&gt;多媒体资源</a></p>
      <p><a href="#">&gt;&gt;校外访问</a></p>
      <p><a href="#">&gt;&gt;版权公告</a></p>
      </div>
      <div id="head3">
      <div id="head5"><p align="left">纸本资源</p></div>
      <p><a href="#">&gt;&gt;新书通告</a></p>
      <p><a href="#">&gt;&gt;特色文献</a></p>
      <p><a href="#">&gt;&gt;书刊捐赠</a></p>
      <p><a href="#">&gt;&gt;书刊荐购</a></p>
      <p><a href="#">&gt;&gt;馆藏报刊录目</a></p>
      </div>
      <div id="head4">
      <div id="head5"><p align="left">国内外图书馆</p></div>
      <p><a href="#">&gt;&gt;985高校馆</a></p>
      <p><a href="#">&gt;&gt;211高校馆</a></p>
      <p><a href="#">&gt;&gt;港澳台高校馆</a></p>
      <p><a href="#">&gt;&gt;国外高校馆</a></p>
      <p><a href="#">&gt;&gt;国内外公共馆</a></p>
      </div>
      <div id="head6"></div>
      </td>
      <td width="1201">
      <div id="enter">
      <p>首页&nbsp;&nbsp;<span style="font-size: 14px; color: #F01215;">>>电子资源</span></p>
      <p>&nbsp;</p>
      <p style="font-size: 24px">电子资源 </p>
      </div>
      <div id="contest">
       <table width="1207" height="605" border="0">
         <tbody>
           <tr>
             <td style="text-align: center; font-size: 36px;"><a href="#">&nbsp;&nbsp;&gt;&gt;&nbsp;&nbsp;数据路导航</a></td>
             <td style="font-size: 36px; text-align: center;"><a href="#">&gt;&gt;&nbsp;&nbsp;免费资源</a></td>
           </tr>
           <tr>
             <td style="font-size: 36px; text-align: center;"><a href="#">&nbsp;&nbsp;&gt;&gt;&nbsp;&nbsp;试用数据库</a></td>
             <td style="font-size: 36px; text-align: center;"><a href="#">&nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&nbsp;&nbsp;电子期刊导航</a></td>
           </tr>
           <tr>
             <td style="font-size: 36px; text-align: center;"><a href="#">&gt;&gt;&nbsp;&nbsp;电子图书</a></td>
             <td style="font-size: 36px; text-align: center;"><a href="#">&nbsp;&nbsp;&gt;&gt;&nbsp;&nbsp;多媒体资源</a></td>
           </tr>
           <tr>
             <td style="font-size: 36px; text-align: center;"><a href="#">&gt;&gt;&nbsp;&nbsp;校外访问</a></td>
             <td style="font-size: 36px; text-align: center;"><a href="#">&gt;&gt;&nbsp;&nbsp;版权公告</a></td>
           </tr>
         </tbody>
       </table>
      </div>
      </td>
    </tr>
  </tbody>
</table>


</div>
</body>

</html>

(3)页面“服务”程序代码:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>上海图书馆</title>
<style type="text/css">
*{margin:0; padding:0;}
body{background-color:#CCC;}
.clear{clear:both;}

#container{
background-color:#F0BBBC;
height:510px;
width:1500px;
margin:auto;}
#container2{
background-color:#E6ECCC;
width:1500px;
height:820px;
margin:20px auto;
}

#picture{height:470px; margin:0px;}

#label{background-color:#CEDDEC; height:30px;}

#head1{
background-color:blue;
height:30px;
margin:0px 0px 10px 0px;
}
#head2{
background-color:#FBB9B9;
height:270px;
}
#head3{height:20px;}
#head4{
background-color:#B9EBF3;
height:405px;
}
#head5{height:45px;}
#head6{
background-color:#F1C93C;
height:30px;
}
#head7{height:60px;}

#table{
background-color:#A4F4DC;
height:760px;
}
a:link {
color: #070707;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #070707;
}
a:hover {
text-decoration: none;
color: #94CB79;
}
a:active {
text-decoration: none;
}
</style>
</head>


<body>
<div id="container">
<div id="picture">
    <img src="imagines/432x324c.jpg" width="1500" height="471" alt=""/> </div>
    <div id="label">
    <table width="1500" border="1">
  <tbody>
    <tr>
      <td width="50" height="30" align="center"><a href="Untitled-1.html">首页</a></td>
      <td width="50" align="center"><a href="Untitled-2.html">资源</a></td>
      <td width="50" align="center"><a href="#"><font color="blue">服务</font></a></td>
      <td width="50" align="center"><a href="Untitled-4.html">关于本馆</a></td>
      <td width="50" align="center"><a href="#">我的图书馆</a></td>
    </tr>
  </tbody>
</table>
    </div>
</div>
<div id="container2">
 <table width="1500" border="1">
  <tbody>
    <tr>
      <td width="238" height="815">
      <div id="head1"><p align="center">服&nbsp;&nbsp;&nbsp;&nbsp;务</p></div>
      <div id="head2">
      <div id="head6">总服务台</div>
      <p>&nbsp;&nbsp;<a href="#">借阅服务</a></p>
      <p>&nbsp;&nbsp;<a href="#">馆际互借</a></p>
      <p>&nbsp;&nbsp;<a href="#">文献传递</a></p>
      <p>&nbsp;&nbsp;<a href="#">情报服务</a></p>
      <p>&nbsp;&nbsp;<a href="#">读者培训</a></p>
      <p>&nbsp;&nbsp;<a href="#">参观接待</a></p>
      <p>&nbsp;&nbsp;<a href="#">空间服务</a></p>
      <p>&nbsp;&nbsp;<a href="#">自助服务</a></p>
      </div>
      <div id="head5"></div>
      <div id="head3">
       <p align="right"><font color="blue">>>>>>>>></font></p>
      </div>
      <div id="head4">
      <table width="238" border="0">
  <tbody>
    <tr>
      <td width="238" height="135"><img src="imagines/timg1.jpg" width="238" height="135" alt=""/></td>
    </tr>
    <tr>
      <td height="135"><img src="imagines/timg.jpg" width="238" height="135" alt=""/></td>
    </tr>
    <tr>
      <td height="135"><img src="imagines/timg2.jpg" width="238" height="135" alt=""/></td>
    </tr>
  </tbody>
</table>


      </div>
      </td>
      <td width="1347">
      <div id="head7">
       <p>首页<span style="font-size: 14px; color: #F01215;">>>服务>>总服务台</span></p>
       <p>&nbsp;</p>
       <p style="font-size: 24px">总服务台</p>
      </div>
      <div id="table">
      <div id="head7">
<p style="text-align: center; font-size: 24px;"><strong>总服务台服务一览表</strong></p>
      <p>&nbsp;</p>
      <p><strong>总服务台:</strong>处理读者服务的各项事务。</p>
      </div>
      <table width="1248" border="1">
  <tbody>
    <tr>
      <td width="90" height="30" style="text-align: center">类别</td>
      <td width="1142" style="text-align: center">内&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;容</td>
    </tr>
    <tr>
      <td height="90" style="text-align: center">电话</td>
      <td>
      <p>宝山校区校本部馆:66134667</p>
      <p>延长校区文荟馆:56331286</p>
      <p>嘉定校区联合馆:69982759</p>
      </td>
    </tr>
    <tr>
      <td height="30" style="text-align: center">开放时间</td>
      <td>
      <p>周一~周日   8:00----22:00(国定假、寒暑假除外)</p>
      </td>
    </tr>
    <tr>
      <td height="" style="text-align: center">咨询与服务</td>
      <td height="480">
       <p>使用图书馆的过程中,遇到的一般性问题,比如图书馆的馆藏、 文献布局、服务方式、借阅规则等;</p>
       <p>&nbsp;</p>
       <p>检索文献过程中遇到的问题,比如检索到某一本图书后怎样找到等;</p>
 <p>&nbsp;</p>
              <p>图书馆其它资源利用方面的咨询;</p>
           <p>&nbsp;</p>
         <p>借阅图书中遇到的问题,比如借书、还书、预约、续借方法等;</p>
           <p>&nbsp;</p>
           <p>借阅图书中遇到的问题,比如借书、还书、预约、续借方法等;</p>
           <p>&nbsp;</p>
           <p>硕博士读者离校,论文提交方法及获得论文提交回执单地点的指引;</p>
           <p>&nbsp;</p>
           <p>一卡通解挂方法与地点说明;</p>
           <p>&nbsp;</p>
           <p>校友进馆校友卡登记送交开通;</p>
           <p>&nbsp;</p>
           <p>自助复印打印机器的使用指导;</p>
           <p>&nbsp;</p>
           <p>自助还款机的使用指导;</p>
           <p>&nbsp;</p>
           <p>使用图书馆过程中的各种问题咨询,</p>
           <p>&nbsp;</p>
              <p>遗失物品的保管及领取登记。</p>
      </td>
    </tr>
    <tr>
      <td height="30" style="text-align: center">机器维护与保修</td>
      <td>工作用电脑、打印机、自助借还机、自助复印打印机的维护与报修。</td>
    </tr>
  </tbody>
</table>


      </div>
      </td>
    </tr>
  </tbody>
</table>


</div>
</body>
</html>

(4)页面“关于本馆”程序代码:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>上海图书馆</title>
<style type="text/css">
*{margin:0; padding:0;}
body{background-color:#CCC;}
.clear{clear:both;}

#container{
background-color:#F0BBBC;
height:510px;
width:1500px;
margin:auto;}
#container2{
background-color:#E6ECCC;
width:1500px;
height:820px;
margin:20px auto;
}

#picture{height:470px; margin:0px;}

#label{background-color:#CEDDEC; height:30px;}

#head1{
background-color:blue;
height:30px;
margin:0px 0px 10px 0px;
}
#head2{
background-color:#FBB9B9;
height:270px;
}
#head3{height:20px;}
#head4{
background-color:#B9EBF3;
height:405px;
}
#head5{height:45px;}
#head6{
background-color:#F1C93C;
height:30px;
}
#head7{height:60px;}

#table{
background-color:#A4F4DC;
height:760px;
}
a:link {
color: #070707;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #070707;
}
a:hover {
text-decoration: none;
color: #94CB79;
}
a:active {
text-decoration: none;
}
</style>
</head>


<body>
<div id="container">
<div id="picture">
    <img src="imagines/432x324c.jpg" width="1500" height="471" alt=""/> </div>
    <div id="label">
    <table width="1500" border="1">
  <tbody>
    <tr>
      <td width="50" height="30" align="center"><a href="Untitled-1.html">首页</a></td>
      <td width="50" align="center"><a href="Untitled-2.html">资源</a></td>
      <td width="50" align="center"><a href="Untitled-3.html">服务</a></td>
      <td width="50" align="center"><a href="#"><font color="blue">关于本馆</font></font></a></td>
      <td width="50" align="center"><a href="#">我的图书馆</a></td>
    </tr>
  </tbody>
</table>
    </div>
</div>
<div id="container2">
 <table width="1500" border="1">
  <tbody>
    <tr>
      <td width="238" height="815">
      <div id="head1">
       <p align="center">关&nbsp;&nbsp;于&nbsp;&nbsp;本&nbsp;&nbsp;馆</p></div>
      <div id="head2">
      <div id="head6">本馆概况</div>
      <p>&nbsp;&nbsp;<a href="#">开放时间</a></p>
      <p>&nbsp;&nbsp;<a href="#">功能布局</a></p>
      <p>&nbsp;&nbsp;<a href="#">组织机构</a></p>
      <p>&nbsp;&nbsp;<a href="#">规章制度</a></p>
      <p>&nbsp;&nbsp;<a href="#">研究与交流</a></p>
      <p>&nbsp;&nbsp;<a href="#">图书馆研究生</a></p>
      <p>&nbsp;&nbsp;<a href="#">品牌服务</a></p>
      <p>&nbsp;&nbsp;<a href="#">馆员天地</a></p>
      <p>&nbsp;&nbsp;<a href="#">网站地图</a></p>
      <p>&nbsp;&nbsp;<a href="#">关于我们</a></p>
      </div>
      <div id="head5"></div>
      <div id="head3">
       <p align="right"><font color="blue">>>>>>>>></font></p>
      </div>
      <div id="head4">
      <table width="238" border="0">
  <tbody>
    <tr>
      <td width="238" height="135"><img src="imagines/timg1.jpg" width="238" height="135" alt=""/></td>
    </tr>
    <tr>
      <td height="135"><img src="imagines/timg.jpg" width="238" height="135" alt=""/></td>
    </tr>
    <tr>
      <td height="135"><img src="imagines/timg2.jpg" width="238" height="135" alt=""/></td>
    </tr>
  </tbody>
</table>


      </div>
      </td>
      <td width="1347">
      <div id="head7">
       <p>首页<span style="font-size: 14px; color: #F01215;">>>关于本馆>>本馆概况</span></p>
       <p>&nbsp;</p>
       <p style="font-size: 24px">本馆概况</p>
      </div>
      <div id="table">
      <div id="head7">
<p style="text-align: center; font-size: 24px;"><strong>本馆概况</strong></p>
      </div>
      <p>&nbsp;&nbsp;&nbsp;&nbsp;上海大学图书馆由宝山校区的校本部馆、延长校区的文荟馆和嘉定校区的联合馆三个分馆组成。馆舍总面积5.39万平方米,拥有18个阅览室,可提供阅览座位4,044 个;拥有可供师生讨论交流的研究空间,目前有6个研究空间可供预约使用;除国定节假日外,每天开放14小时,每周开放98小时,全馆实行开放式借阅一体化服务,并通过三个校区分馆的馆藏通借通还淡化了校区的界限,为师生提供了良好的阅读和学习环境。</p>
      <p>&nbsp;</p>
      <p>&nbsp;&nbsp;&nbsp;&nbsp;上海大学图书馆拥有丰富的馆藏资源。自1994年四校合并后,紧密配合学校学科发展的步伐,加强了学校新建学科(人文社科类等)的馆藏资源建设,使我馆的馆藏资源涵盖了学校的所有学科,为我校的教学与科研提供了强有力的文献信息保障。20多年来,图书馆在继续增加纸本馆藏的同时,大力发展数字资源,引入大量的国内外电子资源,提供中国知网(CNKI)、万方数据知识服务平台、维普中文科技期刊数据库、超星电子书、新东方多媒体学习平台、Web of Science、Wiley Online Library、Science Direct, Elsevier(SD)、Springer Link等数据库,已形成了由纸本图书、纸本报刊(包括合订本)、电子图书、电子报刊全文数据库、多媒体数据库及二次文献检索平台等所组成的多类型、多载体的综合性馆藏体系。师生还可以通过馆际互借与文献传递服务从国内外图书馆获得本馆没有的文献资源。截止2016年底,图书馆拥有纸本文献401.9万册,当年订购纸质中文报刊1,533种,外文报刊300种;订购数据库75种,电子期刊7.0万种,电子书190万种。图书馆提供歌德电子书借阅机和龙源期刊云借阅机,为读者提供电子图书期刊下载服务。</p>
      <p>&nbsp;</p>
      <p>&nbsp;&nbsp;&nbsp;&nbsp;上海大学图书馆本着服务第一,读者至上的理念,在加强馆藏建设的同时,扩展与深化学科服务,加强与院系的联系,针对教学科研的需求主动开展服务,开设多种信息素养课程与培训,承办课题查新、论文咨询、代检代查等服务,并进行专题性学科服务。</p>
      <p>&nbsp;</p>
      <p>&nbsp;&nbsp;&nbsp;&nbsp;上海大学图书馆采用Aleph信息集成管理系统,配置了总存储容量为180TB的网络存储设备。馆内配备了大量的网络端口和计算机终端,读者可在校园网的任意客户端访问本馆数字资源,进行馆藏的查询、预约和续借等,无线网覆盖全馆,具有良好的网络应用环境;全馆提供自助复印扫描打印服务,校本部馆还提供RFID自助借还书机,读者可进行图书的自助借还。</p>
      <p>&nbsp;</p>
      <p>&nbsp;&nbsp;&nbsp;&nbsp;紧密配合上海大学建设世界一流、特色鲜明的综合性研究型大学的发展战略,上海大学图书馆向着建设具有国际化视野、学科化服务、数字化资源的现代化图书馆的目标不断前进。</p>
      <P>&nbsp;</P>
      <p>&nbsp;</p>
      <P>&nbsp;</P>
      <P>&nbsp;</P>
      <P>&nbsp;</P>
      <P>&nbsp;</P>
      <P>&nbsp;</P>
      <P>&nbsp;</P>
      <P>&nbsp;</P>
<P>&nbsp;</P>
      <p align="right">相关链接:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
      <p align="right"><font color="red"><a href="#">校本部馆概况&nbsp;&nbsp;</a></font></p>
      <p align="right"><font color="red"><a href="#">文荟馆概况</a>&nbsp;&nbsp;&nbsp;</font></p>
      <p align="right"><font color="red"><a href="#">联合馆概况</a>&nbsp;&nbsp;&nbsp;</font></p>




      </div>
      </td>
    </tr>
  </tbody>
</table>


</div>
</body>

</html>


ps:编程里的图片是图不对题,采用的是其他图书馆图片。吐舌头


http://chatgpt.dhexx.cn/article/DtnngfKI.shtml

相关文章

宠物网页代码 html静态网页设计制作 dw静态网页成品模板素材网页 web前端网页设计与制作 div静态网页设计

一、网页介绍 1.网页编辑&#xff1a;任意HTML编辑软件&#xff08;如&#xff1a;Dreamweaver、HBuilder、Vscode 、Sublime 、Webstorm、Text 、Notepad &#xff09;等任意html编辑软件进行运行及修改编辑等操作 2.知识应用&#xff1a;技术方面主要应用了网页课程中的: D…

HTML+CSS实现简单静态网页的制作

效果图展示&#xff1a; 用DIV分块布局 html代码&#xff1a; <!DOCTYPE html> <html><head><meta charset"utf-8" /><title>网站首页</title><link rel"stylesheet" type"text/css" /></head&g…

简单网页设计静态成品分享

最近做了很多原创的网页设计&#xff0c;都是简单的网页&#xff0c;采用的是divcss布局方式。页面整体宽度为1024px. 欢迎欣赏

一分钟学习静态网页制作

第一章静态网页制作&#xff1a; 什么叫做HTML&#xff1a;超文本标记语言 HTML优势&#xff1a;世界知名浏览器都支持Google&#xff0c;苹果&#xff0c;微软&#xff0c;等等……还有市场需求 跨平台&#xff1a;1.win系统 2.苹果系统 3.linux系…

CSS静态网页制作

效果如图所示 css代码如下 * {padding: 0;margin: 0; } body {background-color: #f3f5f7; } a {text-decoration: none; } li {list-style: none; } .w {width: 1200px;margin: 0 auto; } .header {margin: 50px auto;height: 40px;text-align: center; } .clearfix:before, …

使用html制作静态网页

网页主要由三部分组成&#xff1a;分别为结构&#xff0c;表现和行为。 XHTML&#xff1a;可扩展文本标签语言&#xff0c;XHTML是一种基于XML的语言。XHTML是一个扮演者类似HTML角色的XML。 HTML提供了六级标题&#xff0c;分别为<h1>、<h2>、<h3>、<h4…

静态网站简单制作

制作一个简单的静态网站 总体框架&#xff1a; <html> <frameset rows"20%,80%"><frame src"top.html" noresize scrolling"no" name"top"></frame><frameset cols"30%,70%"><frame src…

用HTML+CSS+JS搭建一个超简单的静态实用网站页面

废话少说先上效果图&#xff0c;查看网站请访问→http://110.41.21.119:16001/ 这是一个超简洁的网页&#xff0c;主要特征有&#xff1a; 头部背景颜色渐变效果&#xff1a; <div class"header"><div class"loader"><span style"--i:…

静态网页入门讲解,制作属于你自己的网页(一)

写在开始 这个系列教程主要针对完全没有接触过网页制作的萌新小伙伴开设的&#xff0c;如果你有一定的网页知识积累&#xff0c;可以果断关闭&#xff01; 网页前端设计中牵涉的内容太多了&#xff0c;基础教程却比较缺乏&#xff0c;所以博主希望能够通过这样一个系列&#…

最全静态网页模板网站

前言 最近好多人私信我&#xff1a;我学了不久前端&#xff0c;想要用一些项目实战来练练手。那么&#xff0c;我以后将定期更新静态网页实战&#xff0c;专用于提供初学者的练习。 那么这次博客为大家提供一些模板网站&#xff0c;希望初学者借鉴和学习优质资源&#xff1a; …

搭建静态网页

day3作业 请给openlab搭建web网站​ 网站需求&#xff1a;​ 1.基于域名[www.openlab.com](http://www.openlab.com)可以访问网站内容为 welcome to openlab!!!​ 2.给该公司创建三个子界面分别显示学生信息&#xff0c;教学资料和缴费网站&#xff0c;基于[www.openlab.com…

HTML前端静态网页制作

在制作网页之前&#xff0c;首先先分析网页是那些部分组成&#xff0c;可以从以下的代码看出&#xff0c;分为头部、导航栏、logo部分、文字部分等等这些组成。多的不说&#xff0c;直接上代码&#xff0c;本次静态网页代码分为html和css部分。 <!DOCTYPE html> <htm…

web前端简单静态网页制作

那么Web页面制作基础&#xff0c;能让你掌握什么呢&#xff1f; 1.掌握Web基础知识。 2.掌握HTML5基础知识。 3.掌握CSS基础知识。 网页设计源代码&#xff1a; <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><…

HTML+CSS制作的纯静态网页

刚学完HTMLCSS&#xff0c;一定要按照自己的想法去制作网页&#xff0c;虽然没有交互&#xff0c;但是可以对前面的知识有一个很大的重用&#xff0c;你的知识框架会更加完美。css基础html是勾勒&#xff0c;css是染色&#xff0c;基础的css学完你会有种想写页面的冲动&#xf…

游戏网页代码 html静态网页设计制作 dw静态网页成品模板素材网页 web前端网页设计与制作 div静态网页设计

&#x1f329;️ 精彩专栏推荐&#x1f447;&#x1f3fb;&#x1f447;&#x1f3fb;&#x1f447;&#x1f3fb; &#x1f482; 作者主页: 【进入主页—&#x1f680;获取更多源码】 &#x1f393; web前端期末大作业&#xff1a; 【&#x1f4da;HTML5网页期末作业 (1000套…

个人介绍网页代码 html静态网页设计制作 dw静态网页成品模板素材网页 web前端网页设计与制作 div静态网页设计

&#x1f389;精彩专栏推荐&#x1f447;&#x1f3fb;&#x1f447;&#x1f3fb;&#x1f447;&#x1f3fb; ✍️ 作者简介: 一个热爱把逻辑思维转变为代码的技术博主 &#x1f482; 作者主页: 【主页——&#x1f680;获取更多优质源码】 &#x1f393; web前端期末大作业…

一个简单的静态网页制作(html+css)

这是仿照中国高等教育学生信息网写的一个静态网页&#xff08;参考2020年3月份的&#xff09; 这也是我当时辛辛苦苦写了几天的劳动成果&#xff0c;希望大家可以尊重。 截图如下 下面是主要的代码&#xff1a; <!DOCTYPE html> <html> <head> <meta c…

html实战-制作静态网页

教程视频&#xff1a;http://edu.csdn.net/course/detail/535 从42开始 制作的网页&#xff1a;http://www.cnos.co/ 整体思路&#xff1a; 先布局再CSS控制 骨架搭好了&#xff0c;初始化样式&#xff0c; 后再弄CSS样式。注意&#xff1a;将CSS的样式导入到外部样式表时…

制作静态网页

首先进行CSS样式布局&#xff0c;根据样图进行块级标签分布&#xff0c;为每一个块级标签设置颜色以查看布局是否正确&#xff0c;最好是每设置一个块级标签颜色就查看一次是否排布正确&#xff0c;这样可以及时发现问题并解决问题&#xff1b;等到每一块区域都划分完成后&…

API幂等设计

API幂等就是在新增或更新数据时&#xff0c;如果多次发起同一个请求&#xff0c;只能产生一个结果。如&#xff1a;同一个订单多次提交&#xff0c;只能在数据库产生一个订单数据。我了解的基于redis实现幂等的有两种方式&#xff1a;基于token和基于请求。 基于token认证 参…