0% found this document useful (0 votes)
2 views19 pages

Web Development

The document provides an overview of web development concepts, including HTTP request methods and response status codes. It includes multiple examples of HTML structure for a simple webpage titled 'hello, world', demonstrating various elements like stylesheets and scripts. Additionally, it references common HTTP requests for resources such as images and search queries.

Uploaded by

ishan kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views19 pages

Web Development

The document provides an overview of web development concepts, including HTTP request methods and response status codes. It includes multiple examples of HTML structure for a simple webpage titled 'hello, world', demonstrating various elements like stylesheets and scripts. Additionally, it references common HTTP requests for resources such as images and search queries.

Uploaded by

ishan kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 19

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

You might also like