我们公司的需要一个对外宣传的网站介绍,介绍公司的主要业务,公司的发展历史,公司的口号等等信息
HTML: Hyper Text Markup Language 超文本标记语言
超文本: 比普通文本功能更加强大,可以添加各种样式
标记语言: 通过一组标签.来对内容进行描述. <关键字> , 是由浏览器来解释执行
<h1>静夜诗h1>
<b><i>--李白i> b> <br/>
<p>床前明月光,p>
<p>地上鞋两双,p>
<p>举头望明月,p>
<p>低头思故乡.p>
生活所迫,今天的课程,群英妹子不让回家.
设计网页的基础,HTML5
<html>
<head>
<meta charset="UTF-8">
<title>网站信息页面title>
head>
<body>
<h3>公司简介h3>
<hr />
<p>
<font color="red">“中关村黑马程序员训练营”font>是由<b><i>传智播客i>b>联合中关村软件园、CSDN,并委托传智播客进行教学实施的软件开发高端培训机构,致力于服务各大软件企业,解决当前软件开发技术飞速发展,而企业招不到优秀人才的困扰。 目前,“中关村黑马程序员训练营”已成长为行业“学员质量好、课程内容深、企业满意”的移动开发高端训练基地,并被评为中关村软件园重点扶持人才企业。
p>
<p>
<strong>黑马程序员strong>的学员多为大学毕业后,<em>有理想、有梦想,em>想从事IT行业,而没有环境和机遇改变自己命运的年轻人。黑马程序员的学员筛选制度,远比现在90%以上的企业招聘流程更为严格。任何一名学员想成功入学“黑马程序员”,必须经历长达2个月的面试流程,这些流程中不仅包括严格的技术测试、自学能力测试,还包括性格测试、压力测试、品德测试等等测试。毫不夸张地说,黑马程序员训练营所有学员都是精挑细选出来的。百里挑一的残酷筛选制度确保学员质量,并降低企业的用人风险。
p>
<p>
中关村黑马程序员训练营不仅着重培养学员的基础理论知识,更注重培养项目实施管理能力,并密切关注技术革新,不断引入先进的技术,研发更新技术课程,确保学员进入企业后不仅能独立从事开发工作,更能给企业带来新的技术体系和理念。
p>
<p>
一直以来,黑马程序员以技术视角关注IT产业发展,以深度分享推进产业技术成长,致力于弘扬技术创新,倡导分享、 开放和协作,努力打造高质量的IT人才服务平台。
p>
body>
html>
b : 加粗
i : 斜体
strong: 加粗, 带语义标签
em: 斜体, 带语义
在我们的网站中通常需要显示LOGO图片,显示效果如下
img 标签:
常用的属性;
width : 宽度
height: 高度
src : 指定文件路径
alt: 图片加载失败时的提示内容
<html>
<head>
<meta charset="UTF-8">
<title>title>
head>
<body>
<img src="../img/美女22.jpg" width="500px" alt="这张图片可能加载问题" />
body>
html>
<html>
<head>
<meta charset="UTF-8">
<title>title>
head>
<body>
<img src="../img/logo2.png" width="30%"/>
<img src="../image/header.jpg" width="30%" />
body>
html>
./ 代表的是当前路径
../ 代表的上一级路径
../../ 上上一级路径
在我们的网站中,通常会显示友商公司的网站链接
列表标签:
无序列表: ul
type: 小圆圈,小圆点, 小方块
有序列表: ol
type: 1,a ,A,I,
start : 指定是起始索引
<html>
<head>
<meta charset="UTF-8">
<title>title>
head>
<body>
<ul>
<li><a href="http://www.baihe.com" target="_blank">百合网a>li>
<li><a href="http://www.jiayuan.com">世纪家园a>li>
<li>珍爱网li>
<li>非诚勿扰li>
ul>
body>
html>
点击链接,跳转去指定网站
a 超链接标签
常用的属性:
href: 指定要跳转去的链接地址
如果是网络地址需要加上http协议 ,
如果访问的是本网站的html文件,可以直接写文件路径
target : 以什么方式打开
_self: 默认打开方式,在当前窗口打开
_blank: 新起一个标签页打开页面
根据产品文档,完成商城首页,显示效果如图:
table标签:
常用的属性:
bgcolor : 背景色
width : 宽度
height : 高度
align : 对齐方式
tr 标签
td 标签
colspan : 跨列操作
rowspan : 跨行操作
注意: 跨行或者跨列操作之后,被占掉的格子需要删除掉
在td中可以嵌套一个表格
<html>
<head>
<meta charset="UTF-8">
<title>title>
head>
<body>
<table width="100%" >
<tr>
<td>
<table width="100%">
<tr>
<td>
<img src="../img/logo2.png" />
td>
<td>
<img src="../image/header.jpg" />
td>
<td>
<a href="#">登录a>
<a href="#">注册a>
<a href="#">购物车a>
td>
tr>
table>
td>
tr>
<tr bgcolor="black">
<td height="50px">
<a href="#"><font color="white">首页font>a>
<a href="#"><font color="white">手机数码font>a>
<a href="#"><font color="white">鞋靴箱包font>a>
<a href="#"><font color="white">电脑办公font>a>
<a href="#"><font color="white">香烟酒水font>a>
td>
tr>
<tr>
<td>
<img src="../img/1.jpg" width="100%" />
td>
tr>
<tr>
<td>
<table width="100%" height="500px">
<tr>
<td colspan="7">
<h3>最新商品<img src="../img/title2.jpg">h3>
td>
tr>
<tr align="center">
<td rowspan="2" width="206px" height="480px">
<img src="../products/hao/big01.jpg" />
td>
<td colspan="3" height="240px">
<img src="../products/hao/middle01.jpg" width="100%" height="100%" />
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
tr>
<tr align="center">
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
tr>
table>
td>
tr>
<tr>
<td>
<img src="../products/hao/ad.jpg" width="100%" />
td>
tr>
<tr>
<td>
<table width="100%" height="500px">
<tr>
<td colspan="7">
<h3>热门商品<img src="../img/title2.jpg">h3>
td>
tr>
<tr align="center">
<td rowspan="2" width="206px" height="480px">
<img src="../products/hao/big01.jpg" />
td>
<td colspan="3" height="240px">
<img src="../products/hao/middle01.jpg" width="100%" height="100%" />
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
tr>
<tr align="center">
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
<td>
<img src="../products/hao/small06.jpg" />
<p>洗衣机p>
<p><font color="red">$998font>p>
td>
tr>
table>
td>
tr>
<tr>
<td>
<img src="../image/footer.jpg" width="100%" />
td>
tr>
<tr>
<td align="center">
<a href="#">关于我们a>
<a href="#">联系我们a>
<a href="#">招贤纳士a>
<a href="#">法律声明a>
<a href="#">友情链接a>
<a href="#">支付方式a>
<a href="#">配送方式a>
<a href="#">服务声明a>
<a href="#">广告声明a>
<br />
Copyright © 2005-2016 传智商城 版权所有
td>
tr>
table>
body>
html>
编写一个HTML页面, 显示效果如图所示
表单标签
<form action="注册入门案例.html">
<table width="60%" align="center">
<tr>
<td colspan="2"><font color="blue" size="5">会员注册font> USER REGISTERtd>
tr>
<tr>
<td>用户名:td>
<td>
<input type="text" placeholder="请输入用户名"/>
td>
tr>
<tr>
<td>密 码:td>
<td>
<input type="password" placeholder="请输入密码"/>
td>
tr>
<tr>
<td>确认密码:td>
<td>
<input type="password" placeholder="请再次输入密码"/>
td>
tr>
<tr>
<td>email:td>
<td>
<input type="text" placeholder="请输入邮箱"/>
td>
tr>
<tr>
<td>姓名:td>
<td>
<input type="text" placeholder="请输入真实姓名"/>
td>
tr>
<tr>
<td>性别:td>
<td>
<input type="radio" name="sex" /> 男
<input type="radio" name="sex" /> 女
<input type="radio" name="sex" /> 妖
td>
tr>
<tr>
<td>出生日期:td>
<td>
<input type="date" />
td>
tr>
<tr>
<td>验证码:td>
<td>
<input type="text" />
td>
tr>
<tr>
<td>td>
<td>
<input type="submit" value="注册" />
td>
tr>
table>
form>
我们前面已经做完了首页商品展示, 那么我们需要一个页面用来编辑我们的商品信息, 还有商品分类, 用户购买之后,还得有订单管理页面
框架标签:
frameset
注意: 使用了frameset必须将body删掉,否则页面会有问题
frame
常用属性:
src: 引入的html文件路径
name: 指定框架的名称
框架中点击跳转
Ctrl + D 删除光标当前所在的行
Ctrl + Shift + R 复制当前行到下一行
Ctrl + Enter 将光标移动到下一行
Ctrl + Shift + Enter 将光标定位在上一行
Ctrl + Shift + / 注释当前行
Ctrl + R 运行当前网页/刷新当前网页