Can you design a website?

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 ?


The answer is 8.

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.

1 solution

Jansen Wu
Mar 19, 2015

Actually this code below is a menu code

   <ul>
      <li>Home</li>
      <li>My Web</li>
      <li>About Us</li>
      <li>My Blog</li>
      <li>Social Media</li>
   </ul>

So the conclusion is you should write it on the 8th blank.
And the answer is 8

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...