0
I don't know how to start HTML please help me
4 Answers
+ 3
You can do well if you give this app / course a try. After all, you did install this app in order to learn HTML didn't you? :)
+ 2
open a basic text editor and type <!DOCTYPE html> then type your code between HTML tags after this save the file as name.html and run it
+ 1
First, you need to know what is HTML & it's sturcture
Second, if you using HTML5 you should start type <!DOCTYPE html> without ending type</!DOCTYPE html>
Third, try to practice more harder and you will have a skill with this HTML or HTML5
0
Write this basic html using your android text editor from Google Store.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello World</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
Then, Save as helloworld.html in sdcard folder. Open Android Chrome Browser. Type this, file:///sdcard/helloworld.html