Jump to content

Johnny7oak

Members
  • Posts

    8
  • Joined

  • Last visited

Johnny7oak's Achievements

Newbie

Newbie (1/7)

0

Reputation

  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. 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? "<textarea></textarea>" "False"? "<!doctype html5>"? "true"? "<audio>"? "step"? "<header>"?
  3. Thanks, I used to try and look and look at code just to find that kind of mistake... either that or I would have an extra < or > sign or omit one.
  4. 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>
  5. 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
  6. 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...