Look at this main HTML code :
<html>
<head>
<title>This is My Own Website</title>
//...............(1)
<style>
//...............(2)
#menu { //...............(3)}
#main_body { //...............(4)}
#footer { //...............(5)}
</style>
</head>
<body>
//...............(6)
<div id="top">
//...............(7)
</div>
<div id="menu">
//...............(8)
</div>
<div id="main_body">
//................(9)
<div class="left">
//...............(10)
</div>
<div class="mid">
//...............(11)
</div>
<div class="right">
//...............(12)
</div>
<div class="bottom">
//...............(13)
</div>
</div>
<div id="footer">
//................(14)
<div class="cright">
//...............(15)
</div>
</div>
</body>
</html>
If you are about to write this code below :
<ul>
<li>Home</li>
<li>My Web</li>
<li>About Us</li>
<li>My Blog</li>
<li>Social Media</li>
</ul>
Which is the right place to write it on the main HTML code ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Actually this code below is a menu code
So the conclusion is you should write it on the 8th blank.
And the answer is 8