Refactor. JS time!

This commit is contained in:
2023-03-07 13:29:47 -06:00
parent 11d9ecb079
commit c9bb4ba5c5
621 changed files with 780 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<!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>