ASDV-WebDev/lab2_2_CalebFontenot/public_html/2.8.html
2023-01-16 12:35:05 -06:00

20 lines
1.1 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<title>Description List</title>
<meta charset="UTF-8">
</head>
<body>
<h1>Sample Description List</h1>
<dl>
<dt>TCP</dt>
    <dd>Transmission Control Protocol is a method (protocol) used along with the Internet Protocol (IP) to send data in the form of message units, called packets, between computers over the Internet.</dd>
<dt>IP</dt>
<dd>Internet Protocol is the method or protocol by which data is sent from one computer to another on the Internet. Each computer on the Internet is uniquely identified by an IP address.</dd>
<dt>FTP</dt>
    <dd>File Transfer Protocol is a protocol used to exchange files between computers on the Internet.</dd>
  <dt>HTTP</dt>
    <dd>Hypertext Transfer Protocol is the protocol used for exchanging text, graphic images, sound, video, and other multimedia files on the Web.</dd>
</dl>
</body>
</html>