// <html> هو <body> أب
alert( document.body.parentNode === document.documentElement ); // صحيح
// <body> يأتي<head> بعد
alert( document.head.nextSibling ); // HTMLBodyElement
// <head> يكون <body> قبل
alert( document.body.previousSibling ); // HTMLHeadElement
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.