Content deleted Content added
mNo edit summary Tags: Reverted Visual edit Mobile edit Mobile web edit |
m Reverted edit by عصام ابو زين اليافعي (talk) to last version by Finlay McWalter |
||
Line 81:
Elements in an HTML or XML document are represented as nodes in the DOM tree. Each element node has a tag name, attributes, and can contain other element nodes or text nodes as children. For example, an HTML document with the following structure:<syntaxhighlight lang="html">
<html>
<head
<title>My Website</title>
</head>
<body>
<h1>Welcome</h1>
<p>This is my website.</p>
|