單機連接訪問頁面->瀏覽器向Web服務器請求一個HTML頁面->獲取這個頁面,並在你的瀏覽窗口顯示css
<html> <head> <!-- 頁面「Head」開始 --> <title>Head First Lounge</title> <!-- 網頁名字 --> </head> <!-- Head結束 --> <body> <!-- 頁面主體body開始 --> <h1>Welcome to the Head First Lounge</h1> <!-- 一級標題 --> <img src="drinks.gif"> <!-- 插入圖片 --> <p> <!-- 開始一個段落 --> Join us any evening for refreshing elixirs, conversation and maybe a game or two of <em>Dance Dance Revolution</em>. <!-- 強調 --> Wireless access is always provided; BYOWS (Bring your own Web server). </p> <!-- 結束一個段落 --> <h2>Directions</h2> <!-- 二級標題 --> <p> <!-- 開始另外一個段落 --> You'll find us right in the center of downtown Webbille. Come join us! </p> <!-- 段落結束 --> </body> <!-- 頁面主體結束 --> </html>
<head>,<p>,<h1>
<h1>
到<h6>
,字體從大到小,通常不會用到<h3>
<html> <head> <title>Starbuzz Coffe</title> </head> <body> <h1>Starbuzz coffee Beverages</h1> <h2>House Blend,$1.49</h2> <p>A smooth,mild blend of coffees from Mexico,Bolivia and civatenala.</p> <h2>Mocha cafe catte,$2.35</h2> <p>Espresso,steamed milk and hocolate syryp</p> <h2>Cappuccino,$1.89</h2> <p>Amixture of espresso,steamed milk and foam.</p> </body> </html>
雖然頁面結果挺醜的。。。
html
A smooth,mild blend of coffees from Mexico,Bolivia and Guatemala.web
id這個不太懂,還正在尋求解決瀏覽器
<style>
元素放在HTML的首部裏<style>
標記能夠加一個屬性type,能夠代表所使用的樣式。如:<style type="text/css">
<style>
定義頁面樣式<style type="text/css"> body{ <!-- 表示應用於HTML <body>元素中的內容 --> background-color: #d2b48c; <!-- 背景顏色 --> margin-left: 20%; <!-- 左頁邊距 --> margin-right: 20%; <!-- 右頁邊距 --> border: 2px dotted black; <!-- 定義頁面主體周圍的邊距是虛線,顏色爲黑色 --> padding: 10px 10px 10px 10px; <!-- 在頁面主體周圍建立內邊距 --> font-family: sans-serif; <!-- 定義文本使用的字體 --> } </style>
樣式也好看了不少~
服務器