WEB development

web development is a business that develops a website for the internet (world wide web) or intranet (private network). web development can range from simple single-type static page development to complex web-based applications (web applications), e-business, and social networking services. a more comprehensive list of tasks that web development often refers to may include web engineering, web design, web content development, client communication, client-side / server-side scripting, web server and network security configuration, and e-commerce development.

Among web professionals, "web development" usually refers to the main non-design aspects of creating websites: markup, writing, and coding. web development can use content management systems (cms) with basic technical skills to make content changes easy and accessible.


For large organizations and businesses, web development teams can consist of hundreds of people (web developers) and follow standard methods such as agile methodology when developing websites. In small organizations, only one permanent or contract employee may be required, or a secondary appointment to relevant positions, such as a graphic designer or information systems technician. Web development can be a collaborative activity between departments, rather than a domain assigned to a department. a web developer has three types of specialization: front-end developer, back-end developer, and fullstack developer. while front-end developers are responsible for the behavior and images that run in the user's browser, backend developers deal with servers.

Source Code

# This code prints Hello world!

  <!DOCTYPE html>
  <html>
    <head>
      <title>Document</title>
    </head>
    <body>
      <p>Hello world!</p>
    </body>
  </html>
          
Output

Hello world!