Day10:html和css

標題圖

Day10:htmlcss

<html>
<body>
<h1>標題</h1>
<p>段落</p>
</body>
</html>

HTML 是用來描述網頁的一種語言,超文本標記語言,不是一種編程語言,而是一種標記語言,是一套標記標簽,使用標記標簽來描述網頁。

HTML 標簽

HTML 文檔描述網頁

<html> 與 </html> 描述網頁
<body> 與 </body> 頁面內容
<h1> 與 </h1> 標題
<p> 與 </p> 段落

HTML 標題

<h1> - <h6>

HTML 段落

 <p> 標簽

HTML 鏈接

 <a> 標簽

HTML 圖像

<img> 標簽

HTML 元素語法

以開始標簽起始,以結束標簽終止,某些 HTML 元素具有空內容,大多數 HTML 元素可擁有屬性。

<html>
<body>
<p></p>
</body>
</html>
<p> 元素
<body> 元素
<html> 元素
<h1> 定義標題的開始
<body> 定義 HTML 文檔的主體
<table> 定義 HTML 表格
class 規定元素的類名
id 規定元素的唯一 id
style 規定元素的行內樣式
<center>	定義居中的內容。
<font> 和 <basefont>	定義 HTML 字體。
<s> 和 <strike>	定義刪除線文本
<u>	定義下劃線文本
align	定義文本的對齊方式
bgcolor	定義背景顏色
color	定義文本顏色
<code>
<pre></pre>
</code>

HTML 鏈接 - target 屬性

 target="_blank"

name 屬性規定錨(anchor

<img> 是空標簽

<img src="url" />

表格

<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
<table border="1">
<tr>
<td>Row 1, cell 1</td>
<td>Row 1, cell 2</td>
</tr>
</table>

無序列表

<ul>
<li>1</li>
<li>2</li>
</ul>

有序列表

<ol>
<li>1</li>
<li>2</li>
</ol>

<div><span>

header	定義文檔或節的頁眉
nav	定義導航鏈接的容器
section	定義文檔中的節
article	定義獨立的自包含文章
aside	定義內容之外的內容
footer	定義文檔或節的頁腳
details	定義額外的細節

iframe 的語法

<iframe src="URL"></iframe>

HTML 頭部元素

<title> 標簽定義文檔的標題
<title>Title of the document</title><base> 標簽為頁面上的所有鏈接規定默認地址或默認目標(target)
<base target="_blank" /><link> 標簽定義文檔與外部資源之間的關系
<link rel="stylesheet" type="text/css" href="mystyle.css" /><style> 標簽用于為 HTML 文檔定義樣式信息
<style type="text/css">
body {background-color:yellow}
p {color:blue}
</style><meta> 標簽提供關于 HTML 文檔的元數據
<meta name="description" content="" /><script> 元素

統一資源定位器

URL 稱為網址

http	超文本傳輸協議
https	安全超文本傳輸協議
ftp	文件傳輸協議

<!DOCTYPE> 聲明幫助瀏覽器正確地顯示網頁

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head><body></body></html>

什么是 Canvas

// 使用 JavaScript 在網頁上繪制圖像
<canvas id="myCanvas" width="200" height="100"></canvas><script type="text/javascript">
var c=document.getElementById("myCanvas");
var cxt=c.getContext("2d");
cxt.fillStyle="#FF0000";
cxt.fillRect(0,0,150,75);
</script>

html5新標簽

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Demo</title><style>header {width: 200px;height: 100px;background-color: red;}nav {width: 300px;height: 100px;background-color: pink;}</style>
</head>
<body><header></header><nav>上</nav><aside></aside><article></article><time>12</time>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Demo</title><style>fieldset {width: 300px;}</style>
</head>
<body><input type="text" value="請輸入" list="star"/><datalist id="star"><option value=""></option><option value=""></option><option value=""></option><option value=""></option><option value=""></option></datalist><fieldset><legend>登錄</legend>用戶名: <input type="text"> <br>密碼: <input type="password"></fieldset>	
</body>
</html>
// 表單
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Demo</title>
</head>
<body><form action="">用戶名: <input type="text" placeholder="請輸入用戶名" autofocus> <br />上傳頭像: <input type="file" name="" id="" multiple > <br />昵稱:  <input type="text" required accesskey="s"> <br /><input type="submit" value="提交按鈕"></form>
</body>
</html>
// 視頻
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Demo</title>
</head>
<body><iframe height=200 width=200 src='' frameborder=0 'allowfullscreen'></iframe>
</body>
</html>
// 視頻
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Demo</title>
</head>
<body><audio  controls loop><source src=".mp3"/><source src=".ogg"/></audio><video autoplay  controls><source  src=".ogg"/><source  src=".mp4"/></video>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Demo</title><style>p::selection {  /*選擇文字時候的狀態*/background-color: pink;color: yellow;}</style>
</head>
<body><p>中國</p>
</body>
</html>
// 表單
<!DOCTYPE html>
<html lang="en"><head><meta charset="utf-8"></head><body><form action=""><fieldset><legend>學生檔案</legend><label>姓名: <input type="text" placeholder="請輸入學生名字"/></label> <br /><br /><label>手機號: <input type="tel" /></label> <br /><br /><label>郵箱: <input type="email" /></label> <br /><br /><label>所屬學院:  <input type="text" placeholder="請選擇學院" list="xueyuan"/><datalist id="xueyuan"><option>學院</option><option>學院</option><option>學院</option><option>學院</option></datalist><br /><br /><label>出生日期:   <input type="date" /></label> <br /><br /><label>成績:  <input type="number" /></label> <br /><br /><label>畢業時間:  <input type="date" /></label> <br /><br /><input type="submit" />  <input type="reset" /></fieldset></form></body>
</html>

效果

效果

如果看了覺得不錯

點贊!轉發!

達叔小生:往后余生,唯獨有你
You and me, we are family !
90后帥氣小伙,良好的開發習慣;獨立思考的能力;主動并且善于溝通
簡書博客: 達叔小生
https://www.jianshu.com/u/c785ece603d1

結語

  • 下面我將繼續對 其他知識 深入講解 ,有興趣可以繼續關注
  • 小禮物走一走 or 點贊

轉載于:https://www.cnblogs.com/dashucoding/p/11140364.html

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/278485.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/278485.shtml
英文地址,請注明出處:http://en.pswp.cn/news/278485.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

如何在PowerPoint演示文稿中使用iTunes音樂

One of PowerPoint’s charms is its ability to play music during the presentation. Adding music to your presentation is simple, but using a song from your iTunes library requires a few extra steps. Here’s how to use iTunes music in PowerPoint. PowerPoint的…

Android:DELETE_FAILED_INTERNAL_ERROR Error while Installing APKs

Android studio DELETE_FAILED_INTERNAL_ERROR Error while Installing APKs 一、報錯信息 DELETE_FAILED_INTERNAL_ERRORError while Installing APKs 二、報錯原因 在一些機型上安裝軟件 提示卸載原先的軟件 但是又安裝不上新軟件 三、解決方法&#xff1a; File->Settin…

hotmail_在新的Hotmail Wave 4中禁用Messenger

hotmailAre you annoyed by having Messenger automatically sign in when you’re reading your emails in the new Hotmail? Here’s how you can disable the Web Messenger in Hotmail and other Windows Live online apps. 當您在新的Hotmail中閱讀電子郵件時&#xff0…

eclipse中將一個項目作為library導入另一個項目中

1. github上搜索viewpagerIndicator: https://github.com/JakeWharton/ViewPagerIndicator2. 下載zip包&#xff0c;解壓&#xff0c;eclipse中import->Android Existing Code->(注意只導入解壓后下面的Library)3. 導入后標記為Property->Android->isLibrary4. 將i…

論接單報價管理與ERP信息化管理的重要性

中小制造企業兩項比較重要的管理工作&#xff1a;接單報價管理與ERP信息化管理。大部分的中小制造企業都存在財務核算基礎薄弱、ERP信息化錯亂甚至沒有的情況。信息溝通不暢&#xff0c;經營過程數據與結果數據無法掌握是很多中小工廠的通病。樓主所知道的是&#xff0c;很多幾…

mac無法關機_Mac無法關機時該怎么辦

mac無法關機Razvan Franco Nitoi/Shutterstock.com拉茲萬佛朗哥尼托伊/Shutterstock.comMacs are like any other computer. Sometimes they won’t start up, and sometimes they won’t shut down. If your Mac is refusing to shut off, here’s how to shut it down anyway…

數串

數串 題目描述 設有n個正整數&#xff0c;將他們連接成一排&#xff0c;組成一個最大的多位整數。 如:n3時&#xff0c;3個整數13,312,343,連成的最大整數為34331213。 如:n4時,4個整數7,13,4,246連接成的最大整數為7424613。 輸入描述: 有多組測試樣例&#xff0c;每組測試樣…

chromebook刷機_如何在Chromebook上拍照

chromebook刷機Your Chromebook comes equipped with a built-in camera you can use to snap pictures to post to your social media accounts or share with friends and family. Here’s how to take a photo on a Chromebook. 您的Chromebook配備了一個內置攝像頭&#xf…

樹和二叉樹簡介

一、樹 1、什么是樹&#xff1f; 樹狀圖是一種數據結構&#xff0c;它是由n&#xff08;n>1&#xff09;個有限節點組成一個具有層次關系的集合。把它叫做“樹”是因為它看起來像一棵倒掛的樹&#xff0c;也就是說它是根朝上&#xff0c;而葉朝下的。它具有以下的特點&#…

對eventloop的研究

javasctipt是一門單線程的非阻塞的腳本語言&#xff0c;單線程意味著&#xff0c;JavaScript 單線程意味著&#xff0c;javascript代碼在執行的任何時候&#xff0c;都只有一個主線程來處理所有的任務。 JavaScript的事件分兩種&#xff0c;宏任務(macro-task)和微任務(micro-t…

【SSH高速進階】——struts2簡單的實例

近期剛剛入門struts2。這里做一個簡單的struts2實例來跟大家一起學習一下。 本例實現最簡單的登陸&#xff0c;僅包括兩個頁面&#xff1a;login.jsp 用來輸入username與password&#xff1b;success.jsp 為登陸成功頁面。error.jsp為登陸失敗頁面。 1、新建web項目“struts2”…

《智能家居》培訓第六天------2019-01-10

目錄&#xff1a; 一&#xff09;攝像頭 二&#xff09;照明 三&#xff09;所想 四&#xff09;總結 一&#xff09;攝像頭 攝像頭這塊學了跟沒學一樣我覺得&#xff0c;攝像頭給的api&#xff0c;yuyv轉rgb24也是給的api&#xff0c;總而言之就是&#xff0c;直接給了兩個源文…

在Linux上按大小列出文件和目錄

This page will show us how to create a list of files and folders ordered by size using standard Linux commands. 該頁面將向我們展示如何使用標準Linux命令創建按大小排序的文件和文件夾列表。 命令 (Command) To get a list with the size of each item in a folder, y…

記一次kafka數據丟失問題的排查

2019獨角獸企業重金招聘Python工程師標準>>> 數據丟失為大事&#xff0c;針對數據丟失的問題我們排查結果如下。 第一&#xff1a;是否存在數據丟失的問題&#xff1f; 存在&#xff0c;且已重現。 第二&#xff1a;是在什么地方丟失的數據&#xff0c;是否是YDB…

Maximum upload size exceede上傳文件大小超出解決

在這里記錄三種方法, 努力提高自己的姿勢水平 application.yml配置spring:servlet:multipart:enabled: truemax-file-size: 10MB #單個文件最大大小max-request-size: 1024MB #上傳數據總大小 application.properties配置spring.servlet.multipart.max-file-size10Mb #單個文件…

ipad iphone開發_如何在iPhone或iPad上更改應用程序的語言

ipad iphone開發BigTunaOnline/Shutterstock.comBigTunaOnline / Shutterstock.comApple’s iOS 13 makes the iPhone and iPad multilingual. Now, you can change the language of an individual app without changing your primary system language. Each app can have its …

Docker最全教程——從理論到實戰(七)

Docker最全教程——從理論到實戰&#xff08;七&#xff09; 原文:Docker最全教程——從理論到實戰&#xff08;七&#xff09;在本系列教程中&#xff0c;筆者希望將必要的知識點圍繞理論、流程&#xff08;工作流程&#xff09;、方法、實踐來進行講解&#xff0c;而不是單純…

Bash Cookbook 學習筆記 【中級】

Read Me 本文是以英文版<bash cookbook> 為基礎整理的筆記&#xff0c;力求脫水2018.01.21 更新完【中級】。內容包括工具、函數、中斷及時間處理等進階主題。本系列其他兩篇&#xff0c;與之互為參考 【基礎】內容涵蓋bash語法等知識點。傳送門【高級】內容涉及腳本安全…

設置Windows 10時如何創建本地帳戶

Windows 10 tries its hardest to make you use a Microsoft account. The option was already hidden, but now it’s not even offered on Windows 10 Home while you’re connected to the internet. Here’s how to create a local account anyway. Windows 10盡最大努力使…

HSQL

Hive的數據存儲  1、Hive中所有的數據都存儲在 HDFS 中&#xff0c;沒有專門的數據存儲格式&#xff08;可支持Text&#xff0c;SequenceFile&#xff0c;ParquetFile&#xff0c;RCFILE等&#xff09;  2、只需要在創建表的時候告訴 Hive 數據中的列分隔符和行分隔符&…