Web Development
Web Development
openclipart.org
dell.com
HTTP
GET / HTTP/1.1
GET /cat.jpg HTTP/1.1
HTTP/1.1 200 OK
200 OK
301 Moved Permanently
302 Found
304 Not Modified
401 Unauthorized
403 Forbidden
404 Not Found
500 Internal Server Error
<!DOCTYPE html>
<html lang="en">
<head>
<title>hello, world</title>
</head>
<body>
hello, world
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<style>
</style>
<title>hello, world</title>
</head>
<body>
hello, world
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<link href="styles.css" rel="stylesheet"/>
<title>hello, world</title>
</head>
<body>
hello, world
</body>
</html>
GET /search?q=cats HTTP/1.1
GET /search?q=cats HTTP/1.1
Host: www.google.com
<!DOCTYPE html>
<html lang="en">
<head>
<title>hello, world</title>
</head>
<body>
hello, world
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<title>hello, world</title>
</head>
<body>
hello, world
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<script>
</script>
<title>hello, world</title>
</head>
<body>
hello, world
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<script src="scripts.js"></script>
<title>hello, world</title>
</head>
<body>
hello, world
</body>
</html>
Web Development