Dustin McCraw
codingwithdustin@gmail.com
https://www.google.com/search?q=stockdale +high+school
The browser converts your search request into a url that looks like this:
What's a url?
https://www.google.com/search?q=stockdale +high+school
scheme:[//[user:password@]host[:port]][/]path[?query][#fragment]
https://slides.com/dmccraw/internet_01/edit
But you can't deliver a letter to someone's name.
You need their address.
The same is with a url.
It's just a name, you need it's address.
It's a decentralized naming system for computers or any resource connected to the Internet or a private network.
DNS converts a url into a IP Address
Numerical label assigned to each device in a computer network that uses the Internet Protocol.
reddit.com =
instagram.com =
snapchat.com =
151.101.193.140
31.13.77.52
216.58.217.211
www.google.com =
172.217.5.196
HTTP is the protocol used by the Web and this protocol defines how messages are formatted and transmitted, and what actions Web servers and browsers should take in response to various commands.
GET
Request Method:
Status Code:
200
The remote web server will generate html data and send it back.
Text
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>title</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
</body>
</html>
Dustin McCraw
codingwithdustin@gmail.com