Jump to content

Johnny7oak

Members
  • Posts

    8
  • Joined

  • Last visited

Posts posted by Johnny7oak

  1. put them into horizontal lists. Preview Website

    <html>
    <body>
    
    
    <style>
      li {
        float: left;
        list-style-type:none;
    }
    </style>
    <ul>
                                    <li><a href="#">Contact</a> |</li>
                                    <li><a href="#">Home</a> |</li>
                                    <li><a href="#">SignUp</a></li>
                            </ul>
    </body>
    </html>

     

    to correct yours...

    
    <!-- change style to include header -->
    
    <style>
    body,h1,h2,h3,h4,h5,h6 {font-family: "Source Serif Pro", sans-serif}
    header {float:left; list-style-type:none;}
    </style>

    If you want multiple lists, make multiple lists in columns.  Nobody says you can't float and use tables.

  2. Quote
    HTML QUIZ Points: 33 out of 40

    Time spent: 8:07 

    If I received a 33 out of 40, would that score have passed the certification, and would that be the level of difficulty on questions for the certification.?  help me check my corrections?

     

    Quote

    18. What is the correct HTML for making a text area?

    You answered:

    <input type="textarea">

     Wrong Answer!

    "<textarea></textarea>"

     

    Quote

    23. Block elements are normally displayed without starting a new line.

    You answered:

    True

     Wrong Answer!

    "False"?

     

    Quote

    26. Which doctype is correct for HTML5?

    You answered:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN" "http://www.w3.org/TR/html5/strict.dtd">

     Wrong Answer!

    "<!doctype html5>"?

     

    Quote

    28. In HTML, you can embed SVG elements directly into an HTML page.

    You answered:

    False

     Wrong Answer!

    "true"?

     

    Quote

    30. What is the correct HTML element for playing audio files?

    You answered:

    <mp3>

     Wrong Answer!

    "<audio>"?

     

    Quote

    37. Which HTML element is used to display a scalar measurement within a range?

    You answered:

    <range>

     Wrong Answer!

    "step"?

     

    Quote

    40. Which HTML element is used to specify a header for a document or section?

    You answered:

    <head>

     Wrong Answer!

    "<header>"?

     

  3. thank you for the link to the list.  That is way more options.  I must have missed the link.

     

    Is there a way to "style" formatting?>

    <html>
      <title>Bold style</title>
      <head>
        <!-- found out it is font-wieght -->
    <style>
      p.1bold {font-wieght:bold}
    </style>
      </head>
    <body>
    <p class="1bold">Make me bold</p>
      </body>
    </html>

     

  4. can anyone tell me were to create a new text file in Ubuntu 16x? thanks.

    <p>&#9786</p>

    (edit: will probably certify in you HTML 5.0...still a transition from my old HTML programming.  I love Float ... I been using tables like crazy or frames.  I did use an iframes like once for something to do with a JavaScript pulling of data instead of php I think i made it a html.  I love you guys, but certifying in JavaScript is a long ways off.  I did some of the finesse myself, check out the page... I don't make much art anymore but that's my domain:

     

    Luckylynchwebsitez.com

     

    (comment: code is free to take, picture I don't like to host.  Just don't page clone me.)

    (Pictures are actually done with macromedia studio 8... I am a poor boy who can't afford adobe.  I have two licenses of Macromedia studio 8, and one student version of Macromedia MX... I still wonder if I can emulate that in Linux.  Macromedia 8 is real affordable if you can win it new on Ebay.  And you don't need to register. Although macromedia has a compiler program, its only really there to speed up the process.  I learned originally using geocities.  I nested tables big time. and eventually did frames, i loved to nest my frameset. But tried to give options.)

     

    My pride and joy was this site from geocities, that I partially recovered on way-back site and then re-stored:

     

    Mach's Those Who Hunt Elves

  5. I noticed this after mistakingly typing the style format wrong in the unordered list:

     

    If you do not give it disc, square, none, or circle or blank you get numbered listed.

    <html>
    
    <body>
    
    <ul style="list-style-type:anyvalue">
    
    <li>first numbered</li>
    
    <li>second numbered</li>
    
    </ul>
    
    <body>
    
    </html>

     

×
×
  • Create New...