programming

  • how to make a basic html page

    this is how to make a basic html page. code <!DOCTYPE html> <html> <head> <title>basic html code</title> </head> <body> <h1>basic html page</h1> <p>this is a very simple html page</p> </body> </html> save this code as index.html

    Read More