
What does every webpage must have? What are those "called"? Does an index.html page have something that the other pages don't need? I tried search for that on the 'net to learn about those, but I am not finding such? What what be the minimum requirement(s)? Other would be suggestive (as well could be requirement too?)? Those work on browsers as well mobile phones, PC vs Apple, etc...
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
Code:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Optional? Suggestive?
Code:
<html>
<head>
<title>Hello World</title>
</head>
<body>
<p>Hello world</p>
</body>
</html>
Not referring to:
Code:
(assuming all this below MUST be in the <head> section)
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="script.js"></script>
Bookmarks