一、Web让广播明星黯然失色

    要建立Web页面,需要创建用超文本标记语言(HyperText Markup Language,HTML)编写的文件,把它们放在一个Web服务器上


二、Web服务器能做什么?

  Web服务器在互联网上有一份全天候的工作。

   服务器就是连接到互联网的计算机。

   每个服务器会存储HTML文件、图像、声音和其他类型的文件。

   你在网上冲浪,单击一个链接来访问某个页面。这个单击会导致浏览器向Web服务器请求一个HTML页面


三、你写的代码(HTML)

 

<html>
    <head>
        <title>Head First Lounge</title>
    </head>
    <body>
        <h1>Welcome to the Head First Lounge</h1>
        <img src="I:\sss\image\coffee_cup.jpg">
        <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 Webville.Come join us!
        </p>
    </body>
</html>
View Code

相关文章:

  • 2021-06-27
  • 2022-01-21
  • 2021-12-14
  • 2022-12-23
  • 2021-07-21
  • 2021-11-12
  • 2021-07-07
  • 2022-02-09
猜你喜欢
  • 2021-11-26
  • 2021-03-28
  • 2022-12-23
  • 2021-11-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案