Jump to content

rainwater

Members
  • Posts

    62
  • Joined

  • Last visited

Previous Fields

  • Languages
    HTML5, CSS3

Contact Methods

  • Website URL
    http://www.mainemadestuff.com

Profile Information

  • Gender
    Male
  • Interests
    family and friends around the campfire, cooking, camping, computers, walking in the woods, sitting in a river or stream, being out in the cold, winter, gardening, reading

rainwater's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Oh my gosh...thank you so much; I knew I had seen it and had done the tutorial. I was completely way off in my search. Thank you again.
  2. Hi, A while back, I went through all the tutorials. I should have bookmarked the page I want, but thought I could just go back and find it, but I cannot find what I am looking for. I want to have tabs on my page for different areas of my site), and want them to look like an actual tab as on a manila folder. Can you please refer me to that page or tell me how to do it? I built my website about 15 years ago in tables, and am trying to learn this new stuff. I want my new site to look like my old site mainemadestuff.com . You can take a look if you want. I know it has to be done completely different, so I am trying to learn.
  3. Why do you not put a link on each tutorial page? Oh never mind...I just looked again, and there it is. Gosh, my brain just doesn't absorb what my eyes see. I'm sorry.
  4. Thank you. I had a kitty like your avatar...her name was Mara.
  5. While doing this tutorial: http://www.w3schools.com/css/css_navbar.asp , I am a little confused. I am new at learning css, so please be gentle with the explination. I thought the reason for using a seperate css page was so not to have to use html in the original code of the page. In this instance, would it not mean that every page of the website would have to be written in the html part of the page in order to have the navbar be set up the same on each page? I will put the 'try it' code here. <!DOCTYPE html> <html> <head> <style> ul { list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #333; } li { float: left; } li a { display: block; color: white; text-align: center; padding: 14px 16px; text-decoration: none; } li a:hover:not(.active) { background-color: #111; } .active { background-color: #4CAF50; } </style> </head> <body> <ul> <li><a href="#home">Home</a></li> <li><a href="#news">News</a></li> <li><a href="#contact">Contact</a></li> <ul style="float:right;list-style-type:none;"> <li><a class="active" href="#about">About</a></li> <li><a href="#login">Login</a></li> </ul> </ul> </body> </html>
  6. does this help at all? http://www.w3schools.com/css/tryit.asp?filename=trycss_background-color_elements or maybe do a search on the w3schools for the background code you are looking for.
  7. On the home page, and there it is.....I couldn't find it anyplace, but I did not look hard enough!!!!!!!!!!!
  8. I did finally do a search for w3schools forum to find this forum, but I could not find it anywhere on the website: http://www.w3schools.com/ or any of the links at all. How are people supposed to get help if they cannot find this forum?
  9. on this page, I do not understand the <p id="para1">Me too!</p> as there is no <p id=para1"> in the <head> <style> Will you please explain this for me? http://www.w3schools.com/css/tryit.asp?filename=trycss_syntax_element <!DOCTYPE html> <html> <head> <style> p { text-align: center; color: red; } </style> </head> <body> <p>Every paragraph will be affected by the style.</p> <p id="para1">Me too!</p> <p>And me!</p> </body> </html>
  10. Are these tutorials made by the same people but on different sites? http://www.w3c-schools.com/css/default.asp.htm http://www.w3schools.com/css/default.asp I am confused and want to be able to ask questions about the tutorials. Thank you, Deb
  11. LOL thescientist....I have no idea what you just said, but I do believe I should stick to HTML5 / CSS3....I think...hahahehe...
  12. OK, I think I have it now concerning the PHP, HTML5 and CSS3, oh and Azure also. Thank you Ingolme and scout1idf.
  13. Hmmmmm. The person that told me about PHP said he didn't use HTML5 or CSS3 but used, I think he said Azure...Does that sound right?
×
×
  • Create New...