+ 2
I created an html document with the extension .html , I'm 100% sure that the documents was well written, but when I tried opening the document with my browser; I saw a series of meaningless characters which covered my screen. but my expected output was "I am loved by God"
HTML document
12 Respuestas
+ 3
you would have to post your html for us to see what may have gone wrong. you also don't mention which browser and version you may have tested it in. Lastly, if you only expected to see one sentence then that would be a very short and easy to post html document for review.
+ 3
The problem is your use of a word processor. NEVER do that. Use a text editor like Notepad or an advanced one like Sublime Text.
+ 1
You didn't close you're head or body tags for a start, and I believe you have to place <! DOCTYPE html> at the top
+ 1
just to be sure, copy your code at the clip board, open a new notepad (not word) from scratch and paste your code back there. save it as test.html, close it and then open it.
+ 1
bcoz it's HTML 5 start the code with: <!DOCTYPE html>.
0
<html>
<head><title>Learn about God with Exellentemy</title></head>
<body>
<p>I am loved by God</p></body>
</html>
0
I tried it with Firefox, explorer, and opera mini
0
i have tried the <!DOCTYPE HTML> tag, but same result. I used a word processor to type the code and saved it with html extension
0
<!DOCTYPE html>
<html lang=en>
<meta charset="UTF-8>
<head><title>Learn about God with Exellentemy</title></head>
<body>
<p>I am loved by God</p></body>
</html>
0
use text editor like notepad
0
use the notepad++ or dreamviewer..best platforms for create excellents webpages.
- 3
hm...