- 6
How to create an opening html tag
ruby
7 Réponses
+ 1
akala bumaypatkiu
- 2
please explain more.
- 2
I think I support farshard
- 2
html
- 3
Related to Ruby, I guess that your question context is server sided dynamic html serving (probably with Rails web server framework)...
<html></htm> pair is the root element node of a web document. The first is the opening tag, second is the closing one... creating << an opening html tag >> strictly is just done by outputing plain text format with '<html>'. Anyway, it should be closed at end of document ^^
However, an html (web) document require (not mandatory but very advised to be quite sure of how your page is displayed) a <!DOCTYPE> meta tag declaration to define the Html version specification you're used (simply <!DOCTYPE html> for Html5)... so, maybe are you talking about that?
- 3
<html></html>
- 4
The <html> Tag
Fill in the blank to create an opening html tag: