Dreamweaver CC 是世界顶级软件厂商 Adobe 推出的一套拥有可视化编辑界面,用于制作并编辑网站和移动应用程序的网页设计软件。由于它支持代码、拆分、设计、实时视图等多种方式来创作、编写和修改网页,对于初级人员,你可以无需编写任何代码就能快速创建 Web 页面。其成熟的代码编辑工具更适用于 Web 开发高级人员的创作!
同一个类名可以由多个 HTML 元素使用,而一个 id 名称只能由页面中的一个 HTML 元素使用:
实例
<style>/* 设置 id 为 "myHeader" 的元素的样式 */#myHeader { background-color: lightblue; color: black; padding: 40px; text-align: center;}/* 设置类名为 "city" 的所有元素的样式 */.city { background-color: tomato; color: white; padding: 10px;}</style><!-- 拥有唯一 id 的元素 --><h1 id="myHeader">My Cities</h1><!-- 拥有相同类名的多个元素 --><h2 class="city">London</h2><p>London is the capital of England.</p><h2 class="city">Paris</h2><p>Paris is the capital of France.</p><h2 class="city">Tokyo</h2><p>Tokyo is the capital of Japan.</p>
<!DOCTYPE html> <html> <body style="background-color:yellow;"> <h2 style="background-color:red;">This is a heading</h2> <p style="background-color:green;">This is a paragraph.</p> </body> </html>
<audio controls> <source src="horse.mp3" type="audio/mpeg"> <source src="horse.ogg" type="audio/ogg"> Your browser does not support this audio format. </audio>
<video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> <source src="movie.webm" type="video/webm"> Your browser does not support the video tag. </video>
HTML 即超文本标记语言,是目前应用最为广泛的语言之一,是组成一个网页的主要语言。在现今这个 HTML5 华丽丽地占领了整个互联网的时候,如果想要通过网页抓住浏览者的眼球光靠因循守旧是不行的,程序猿们需要掌握一些必须知道的 HTML 常用代码,因为只有熟悉掌握了常用的 HTML 代码,程序猿们在编写网页的时候才可以做到流畅美观,用细腻的思维和创意的细节效果打动并留住网页浏览者。
在网页设计中,常常要使用 html 文本框来收集一些用户信息或是制作登录页,虽然只是简单的输入框,但是如果加入一些美化设计会使你的页面看起来更加有吸引力,下面就给大家提供了一些 html 文本框的参考样式和常见的 html 操作技巧,希望对你的网页制作有帮助。首先我们先看看一个最简单的文本框是如何实现的?
现在,我们一起来看看几个好用的 html 表单文本框是如何实现的。表单的文本框分为单行文本框和多行文本框,故名思义,单行文本框用于输入一些简短的信息,如:姓名、E_mail地址、口令等等;多行文本框用于输入内容较长的信息,如:用户意见、评论、留言等。只要你理解了表单的文本框参数的含义,制作接收信息的文本框是不难的,请看下面的例子。
<b>Bold Text</b><strong>This text is important</strong><i>Italic Text</i><em>Emphasis - This text is emphasized</em><u>Underline Text</u><pre>Preformatted text</pre><code>Source code</code><del>Deleted text</del><mark>Marked/highlighted text</mark><ins>Inserted text</ins><sup>Makes text superscripted</sup><sub> Makes text subscripted</sub><small>Makes text smaller</small><pre>Pre-formatted Text</pre><kbd>Ctrl</kbd><blockquote>Text Block Quote</blockquote>
标题
<h1> This is Heading 1 </h1><h2> This is Heading 2 </h2><h3> This is Heading 3 </h3><h4> This is Heading 4 </h4><h5> This is Heading 5 </h5><h6> This is Heading 6 </h6>
<meta property="og:type" content="website"><meta property="og:locale" content="en_CA"><meta property="og:title" content="Title of this page, same as title tag"><meta property="og:url" content="http://fullurl.com/to-this/page/"><meta property="og:image" content="http://fullurl.com/to-this/image.jpg"><meta property="og:site_name" content="Name of your website"><meta property="og:description" content="Description of this page, same as meta description">
被 Facebook、Instagram、Pinterest、LinkedIn 等使用。
Twutter Cards 推特卡片
<meta name="twitter:card" content="summary"><meta name="twitter:site" content="@yourtwitterhandle"><meta name="twitter:title" content="Title of this page, same as title tag"><meta name="twitter:url" content="http://fullurl.com/to-this/page/"><meta name="twitter:description" content="Description of this page, same as meta description"><meta name="twitter:image" content="http://fullurl.com/to-this/image.jpg">
Dreamweaver CC 是世界顶级软件厂商 Adobe 推出的一套拥有可视化编辑界面,用于制作并编辑网站和移动应用程序的网页设计软件。由于它支持代码、拆分、设计、实时视图等多种方式来创作、编写和修改网页,对于初级人员,你可以无需编写任何代码就能快速创建 Web 页面。其成熟的代码编辑工具更适用于 Web 开发高级人员的创作!
同一个类名可以由多个 HTML 元素使用,而一个 id 名称只能由页面中的一个 HTML 元素使用:
实例
<style>/* 设置 id 为 "myHeader" 的元素的样式 */#myHeader { background-color: lightblue; color: black; padding: 40px; text-align: center;}/* 设置类名为 "city" 的所有元素的样式 */.city { background-color: tomato; color: white; padding: 10px;}</style><!-- 拥有唯一 id 的元素 --><h1 id="myHeader">My Cities</h1><!-- 拥有相同类名的多个元素 --><h2 class="city">London</h2><p>London is the capital of England.</p><h2 class="city">Paris</h2><p>Paris is the capital of France.</p><h2 class="city">Tokyo</h2><p>Tokyo is the capital of Japan.</p>
<!DOCTYPE html> <html> <body style="background-color:yellow;"> <h2 style="background-color:red;">This is a heading</h2> <p style="background-color:green;">This is a paragraph.</p> </body> </html>
<audio controls> <source src="horse.mp3" type="audio/mpeg"> <source src="horse.ogg" type="audio/ogg"> Your browser does not support this audio format. </audio>
<video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> <source src="movie.webm" type="video/webm"> Your browser does not support the video tag. </video>
HTML 即超文本标记语言,是目前应用最为广泛的语言之一,是组成一个网页的主要语言。在现今这个 HTML5 华丽丽地占领了整个互联网的时候,如果想要通过网页抓住浏览者的眼球光靠因循守旧是不行的,程序猿们需要掌握一些必须知道的 HTML 常用代码,因为只有熟悉掌握了常用的 HTML 代码,程序猿们在编写网页的时候才可以做到流畅美观,用细腻的思维和创意的细节效果打动并留住网页浏览者。
在网页设计中,常常要使用 html 文本框来收集一些用户信息或是制作登录页,虽然只是简单的输入框,但是如果加入一些美化设计会使你的页面看起来更加有吸引力,下面就给大家提供了一些 html 文本框的参考样式和常见的 html 操作技巧,希望对你的网页制作有帮助。首先我们先看看一个最简单的文本框是如何实现的?
现在,我们一起来看看几个好用的 html 表单文本框是如何实现的。表单的文本框分为单行文本框和多行文本框,故名思义,单行文本框用于输入一些简短的信息,如:姓名、E_mail地址、口令等等;多行文本框用于输入内容较长的信息,如:用户意见、评论、留言等。只要你理解了表单的文本框参数的含义,制作接收信息的文本框是不难的,请看下面的例子。
<b>Bold Text</b><strong>This text is important</strong><i>Italic Text</i><em>Emphasis - This text is emphasized</em><u>Underline Text</u><pre>Preformatted text</pre><code>Source code</code><del>Deleted text</del><mark>Marked/highlighted text</mark><ins>Inserted text</ins><sup>Makes text superscripted</sup><sub> Makes text subscripted</sub><small>Makes text smaller</small><pre>Pre-formatted Text</pre><kbd>Ctrl</kbd><blockquote>Text Block Quote</blockquote>
标题
<h1> This is Heading 1 </h1><h2> This is Heading 2 </h2><h3> This is Heading 3 </h3><h4> This is Heading 4 </h4><h5> This is Heading 5 </h5><h6> This is Heading 6 </h6>
<meta property="og:type" content="website"><meta property="og:locale" content="en_CA"><meta property="og:title" content="Title of this page, same as title tag"><meta property="og:url" content="http://fullurl.com/to-this/page/"><meta property="og:image" content="http://fullurl.com/to-this/image.jpg"><meta property="og:site_name" content="Name of your website"><meta property="og:description" content="Description of this page, same as meta description">
被 Facebook、Instagram、Pinterest、LinkedIn 等使用。
Twutter Cards 推特卡片
<meta name="twitter:card" content="summary"><meta name="twitter:site" content="@yourtwitterhandle"><meta name="twitter:title" content="Title of this page, same as title tag"><meta name="twitter:url" content="http://fullurl.com/to-this/page/"><meta name="twitter:description" content="Description of this page, same as meta description"><meta name="twitter:image" content="http://fullurl.com/to-this/image.jpg">