教你點厲害玩意,嚐嚐HTML的厲害!html
我爲了這節課寫了一些東西,你來看看ios
這是images文件夾裏的東西網站
廢話少說,看代碼ui
這是index.html的this
1 <html> 2 <head> 3 <title>Head First Lounge</title> 4 </head> 5 <body> 6 <h1>Welcome to the New and Impproved Head First Lounge</h1> 7 <img src = "images/drinks.jpg" alt ="果汁" title = "果汁"> 8 <p> 9 Join us any evening for refershing <a href = "elixir.html" title ="elixirs" target = "_blank">elixirs</a> 10 </p> <!--target = _blank是在新標籤打開連接--> 11 <h2>Directions</h2> 12 <p> 13 You'll find us right the center of downtown Webbille. If you need help finding us, check out our <a href = "directions.html" title = "directions" target = "_blank">detailes directions</a> 14 Come join us! 15 </p> 16 </body> 17 </html>
這是它的效果spa
看見detailes directions了嗎?那是個連接,點擊它,看看會發生什麼code
聰明的你不用想就知道,對吧?htm
它在新窗口打開了另外一個網頁blog
這是directions.html,如下是代碼教程
<html> <head> <title>Head First Lounge Directions</title> </head> <body> <h1>Directions</h1> <p> Take the 305 S exit to Webville - go 0.4 mi </p> <p> Continue on 305 - go 12 mi </p> <p> Turn right at Structure A ve N - go 0.6 mi </p> <p> Turn right and head toward Structure A ve N - go 0.0 mi </p> <p> Turn right at Structure A ve N - go 0.7 mi </p> <p> Continue on Structure A ve S - go 0.2 mi </p> <p> Turn right at SW Persebtation Way - go 0.0 mi </p> <p><a href = "index.html" title = "回到主頁面">回到主頁面</p> </body> </html>
點擊回到主頁面,就會回到index.html
別忘了主頁面還有一個elixir呢,別忘了點它,它不會受傷的(除非你用本身的手捅破屏幕)
這就是elixir.html頁面
如下是它的代碼
<html> <head> <title>Head First Lounge Elixirs</title> </head> <body> <h1>Our Elixirs</h1> <h2>Yellow Tea Cooler</h2> <img src = "images/yellow.jpg" width = "100" height = "100"> <p> Chaeck full of vitamins and mineral, this elixir comblines the herlthful benefits of yellow tea with a twist of chamorimile biossoms and ginger root. </p> <h2>Resberry Ice Concentration</h2> <img src = "images/red.jpg" width = "100" height = "100"> <p> Concentration resberry juice grass, citrus peel and roschips, this icy drink will mack your mind feel clear and crisp. </p> <h2>Blueberry Bliss Elixir</h2> <img src = "images/blue.jpg" width = "100" height = "100"> <p> Blueberry and chreey essence mixed into a base of elderflower herb tea will put you in a relexd state of bliss in no time. </p> <h2>Cranberry Antioxdant Blast</h2> <img src = "images/lightyellow.jpg" width = "100" height = "100"> <p> Wake up to the flavors of cranberry and hibiscus in this vitamin C rich elixir. </p> <p> <a href = "index.html" title = "回到主頁面">回到主頁面 </p> </body> </html>
怎麼樣,別被強有力a標籤嚇到了
//本系列教程基於《Head First HTML與CSS(第二版)》,此書國內各大購物網站皆可購買
轉載請註明出處 by:M_ZPHr
最後修改日期:2019-01-16