0
How can i make a web page?
I need help to create a web page or something similar, so i can build a browser game on it, can someone help?
4 Answers
+ 3
Go for HTML, CSS and JavaScript
Find below the simplest example
Open any editor of your choice and just type "hello world" and save the file with .html or .htm extension.
That's it
But it is always advisible to use the tag as told by _yaroslavv
+ 2
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
It makes web page
0
Thank you
0
Thank you Rishi Anand