Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

lab6-GET.html

Blame
  • lab6-GET.html 547 B
    <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset='utf-8' />
        <title>COMP30023 HTTP Server</title>
      </head>
    
      <body>
        <h1>COMP30023 HTTP Server</h1>
    
        <img
          src="https://brandhub.unimelb.edu.au/guidelines/logos/04_Logo_Vertical-Housed.jpg"
          alt="HTML5 Icon"
          style="width:400px;height:400px;"
        />
    
        <p>Welcome to our server, please enter your name below</p>
    
        <form method="POST">
          Name: <input type="text" name="user" />
          <input type="submit" class="button" />
        </form>
      </body>
    </html>