search
HomeWeb Front-endHTML TutorialHTML5第二节_html/css_WEB-ITnose

第二回合:HTML5的新特性

与之前的HTML4.01相比,HTML5增加了非常多的改变:

① 新的语义元素

② 新的元素特性:增加新的元素属性、表单元素、验证功能等内容。

③ 多媒体:增加

④ 2D/3D 绘图:增加绘图元素。

⑤ 存储:增加在线、离线存储功能。

⑥ 连通性:增加客户端与服务器交互的两个内容:Web Sockets(客户端与服务器持久连接)和Server-sent events(服务器推送数据)等。

⑦ 集成:提供Web Workers、History API、requestAnimationFrame、地理位置等强大的功能。

⑧ 设备访问:提供对摄像头、移动设备的支持。

⑨ CSS3样式:提供了新的背景样式特性、动画、边框等样式。

下面我们用实例来说明下各个标签的使用以及h5与c3的配合。

html代码如下:

<!DOCTYPE html><html><head>  <meta charset="utf-8" />  <title>HTML5</title>  <link rel="stylesheet" href="html5.css"></head><body>   <header class="show">     <h1 id="Header">Header</h1>     <h2 id="Subtitle">Subtitle</h2>    </header><!-- 头部结束 -->    <div id="container">        <nav>          <h3 id="Nav">Nav</h3>          <a href="">HTML5</a>          <a href="">CSS3</a>          <a href="">Javascript</a>        </nav><!-- 导航链接部分 -->        <section>            <article>                <header>                    <h1 id="Article-Header">Article Header</h1>                </header><!-- 定义头部 -->                <p>Lorem ipsum dolor HTML5 nunc aut nunquam sit amet, consectetur adipiscing elit. Vivamus at est eros, vel fringilla urna.</p>                <p>Per inceptos himenaeos. Quisque feugiat, justo at vehicula pellentesque, turpis lorem dictum nunc.</p>                <footer>                    <h2 id="Article-Footer">Article Footer</h2>                </footer><!-- 定义尾部 -->            </article><!-- 定义文章 -->            <article>                <header>                    <h1 id="Article-Header">Article Header</h1>                </header>                <p>HTML5: "Lorem ipsum dolor nunc aut nunquam sit amet, consectetur adipiscing elit. Vivamus at est eros, vel fringilla urna. Pellentesque odio</p>                <footer>                    <h2 id="Article-Footer">Article Footer</h2>                </footer>            </article>        </section><!-- 定义文档中的节 -->        <aside>            <h3 id="Aside">Aside</h3>            <p>do you love this case? if you want make friends with me ,you can add my qq: 1125911451,thank you for your join.</p>            <img src="/static/imghwm/default1.png"  data-src="lian.jpg"  class="lazy" alt=""    style="max-width:90%"  style="max-width:90%">        </aside><!-- 定义侧边栏目 -->        <footer>            <h2 id="Footer">Footer</h2>        </footer>    </div></body></html><br /><br />css代码如下:<br />

body {    background-color:#CCCCCC;    font-family:Geneva,Arial,Helvetica,sans-serif;    margin: 0px auto;    max-width:900px;    border:solid;    border-color:#FFFFFF;}header {    background-color: #F47D31;    display:block;    color:#FFFFFF;    text-align:center;}header h2 {    margin: 0px;}h1 {    font-size: 72px;    margin: 0px;}h2 {    font-size: 24px;    margin: 0px;    text-align:center;    color: #F47D31;}h3 {    font-size: 18px;    margin: 0px;    text-align:center;    color: #F47D31;}h4 {    color: #F47D31;    background-color: #fff;    -webkit-box-shadow: 2px 2px 20px #888;    -webkit-transform: rotate(-45deg);    -moz-box-shadow: 2px 2px 20px #888;    -moz-transform: rotate(-45deg);    position: absolute;    padding: 0px 150px;    top: 50px;    left: -120px;    text-align:center;    }nav {    display:block;    width:25%;    float:left;}nav a:link, nav a:visited {    display: block;    border-bottom: 3px solid #fff;    padding: 10px;    text-decoration: none;    font-weight: bold;    margin: 5px;}nav a:hover {    color: white;    background-color: #F47D31;}nav h3 {    margin: 15px;    color: white;}#container {    background-color: #888;}section {    display:block;    width:50%;    float:left;}article {    background-color: #eee;    display:block;    margin: 10px;    padding: 10px;    -webkit-border-radius: 10px;    -moz-border-radius: 10px;    border-radius: 10px;}article header {    -webkit-border-radius: 10px;    -moz-border-radius: 10px;    border-radius: 10px;    padding: 5px;}article footer {    -webkit-border-radius: 10px;    -moz-border-radius: 10px;    border-radius: 10px;    padding: 5px;}article h1 {    font-size: 18px;}    aside {    display:block;    width:25%;    float:left;}aside h3 {    margin: 15px;    color: white;}aside p {    margin: 15px;    color: white;    font-weight: bold;    font-style: italic;}    footer {    clear: both;        display: block;    background-color: #F47D31;    color:#FFFFFF;    text-align:center;    padding: 15px;}footer h2 {    font-size: 14px;    color: white;}/* links */a {    color: #F47D31;}a:hover {    text-decoration: underline;}.show {                                 -webkit-animation: show 25s ease-out infinite;            -moz-animation: show 25s ease-out infinite;            -o-animation: show 25s ease-out infinite;            animation: show 25s ease-out infinite;            -webkit-transform: translate3d(0, 0, 0);            -ms-transform: translate3d(0, 0, 0);            -o-transform: translate3d(0, 0, 0);            transform: translate3d(0, 0, 0);        }/*调用动画*/ @-webkit-keyframes show {            0% {                background: #f47d31;                color:  white;            }            50% {                background: #e0a014;                color: #a3d9ff;            }            100% {                background: purple;                color: pink;            }        }/*定义动画*/<br />效果图如下图所示

     

我相信 现在大家对h5已经产生了浓厚的兴趣,那么现在可以自己动手去撸代码,用h5开发页面,在下一节里我将继续为大家讲解h5的应用

 

 

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Future of HTML: Evolution and TrendsThe Future of HTML: Evolution and TrendsMay 13, 2025 am 12:01 AM

The future of HTML will develop in a more semantic, functional and modular direction. 1) Semanticization will make the tag describe the content more clearly, improving SEO and barrier-free access. 2) Functionalization will introduce new elements and attributes to meet user needs. 3) Modularity will support component development and improve code reusability.

Why are HTML attributes important for web development?Why are HTML attributes important for web development?May 12, 2025 am 12:01 AM

HTMLattributesarecrucialinwebdevelopmentforcontrollingbehavior,appearance,andfunctionality.Theyenhanceinteractivity,accessibility,andSEO.Forexample,thesrcattributeintagsimpactsSEO,whileonclickintagsaddsinteractivity.Touseattributeseffectively:1)Usese

What is the purpose of the alt attribute? Why is it important?What is the purpose of the alt attribute? Why is it important?May 11, 2025 am 12:01 AM

The alt attribute is an important part of the tag in HTML and is used to provide alternative text for images. 1. When the image cannot be loaded, the text in the alt attribute will be displayed to improve the user experience. 2. Screen readers use the alt attribute to help visually impaired users understand the content of the picture. 3. Search engines index text in the alt attribute to improve the SEO ranking of web pages.

HTML, CSS, and JavaScript: Examples and Practical ApplicationsHTML, CSS, and JavaScript: Examples and Practical ApplicationsMay 09, 2025 am 12:01 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML is used to build web page structure; 2. CSS is used to beautify the appearance of web pages; 3. JavaScript is used to achieve dynamic interaction. Through tags, styles and scripts, these three together build the core functions of modern web pages.

How do you set the lang attribute on the  tag? Why is this important?How do you set the lang attribute on the tag? Why is this important?May 08, 2025 am 12:03 AM

Setting the lang attributes of a tag is a key step in optimizing web accessibility and SEO. 1) Set the lang attribute in the tag, such as. 2) In multilingual content, set lang attributes for different language parts, such as. 3) Use language codes that comply with ISO639-1 standards, such as "en", "fr", "zh", etc. Correctly setting the lang attribute can improve the accessibility of web pages and search engine rankings.

What is the purpose of HTML attributes?What is the purpose of HTML attributes?May 07, 2025 am 12:01 AM

HTMLattributesareessentialforenhancingwebelements'functionalityandappearance.Theyaddinformationtodefinebehavior,appearance,andinteraction,makingwebsitesinteractive,responsive,andvisuallyappealing.Attributeslikesrc,href,class,type,anddisabledtransform

How do you create a list in HTML?How do you create a list in HTML?May 06, 2025 am 12:01 AM

TocreatealistinHTML,useforunorderedlistsandfororderedlists:1)Forunorderedlists,wrapitemsinanduseforeachitem,renderingasabulletedlist.2)Fororderedlists,useandfornumberedlists,customizablewiththetypeattributefordifferentnumberingstyles.

HTML in Action: Examples of Website StructureHTML in Action: Examples of Website StructureMay 05, 2025 am 12:03 AM

HTML is used to build websites with clear structure. 1) Use tags such as, and define the website structure. 2) Examples show the structure of blogs and e-commerce websites. 3) Avoid common mistakes such as incorrect label nesting. 4) Optimize performance by reducing HTTP requests and using semantic tags.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function