A web page (or webpage) is a hypertext document on the World Wide Web. Web pages are delivered by a web server to the user and displayed in a web browser.[1] A website consists of many web pages linked together under a common domain name. The name "web page" is a metaphor of paper pages bound together into a book.
A web page is a structured document. The core element of a web page is a text file written in the HyperText Markup Language (HTML)[2] which specifies the content of the web page (including links (called hyperlinks) to other web resources, primarily other web pages, and to different sections of the same web page). Multimedia content on the web, such as images, videos, and other web pages, can be directly embedded in a web page to form a compound document.
An HTML document can include separate files called Cascading Style Sheets (CSS) documents (which are also text files) which specify the presentation of content on a web page. (This is in principle an alternative to including that information directly in the HTML code.)
The document can also include JavaScript or WebAssembly programs, which are executed by the web browser to add dynamic behavior to the web page:[2][3] for example, a form which accepts input from the user. Web pages with dynamic behavior can function as application software, referred to as web applications.
From the perspective of server-side website deployment, there are two types of web pages: static and dynamic. Static pages are retrieved from the web server's file system without any modification,[5] while dynamic pages must be created by the server on the fly, typically reading from a database to fill out a template, before being sent to the user's browser.[6]