HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Search results

  1. D

    Favourite websites?

    I probably spend the most time on reddit, other than that, whatever looks most interesting in my feedly feed.
  2. D

    Taking apart an existing webpage

    I realize I am digging up an old topic, but no one mentioned this. Save the source and view it in an editor like NotePad++. It has syntax highlighting, and allows you to collapse div blocks so you don't get overwhelmed by all the code. After you become more used to viewing code, you won't need...
  3. D

    What are some good videos to reintroduce me back into HTML?

    I agree with rodserd. Having a project you want to complete will also provide motivation which will get you through the rough spots. I don't have any video recommendations, because I haven't watched any, but a quick search on youtube for "html primer" had a lot of results.
  4. D

    CSS Image Placement - Too Cramped

    If you post a link I would be happy to help. Why are you forcing the image widths?
  5. D

    html message over html page?

    You can do that easily with html and css. Here's one method: http://www.webdesignerdepot.com/2012/10/creating-a-modal-window-with-html5-and-css3/
  6. D

    Request: Tutorial for a Good Responsive Design

    This will give you a really good start: How to Create a Responsive Website in about 15 Minutes http://www.1stwebdesigner.com/css/responsive-website-tutorial/
  7. D

    Free or Paid host?

    Paid hosting is very inexpensive. For less than $5,00 per month, plus a domain name, you have everything you need. I can't imagine using free hosting and giving someone else the ad revenue.
  8. D

    Youtube Likes Service

    The only information I have been able to find that somewhat relates to this is here: https://support.google.com/youtube/troubleshooter/2991876?hl=en It says: The process they use to determine "quality views" remains a mystery. If anyone discovers more info, please share.
  9. D

    Could I make this voting system with PHP?

    Google Charts is great for displaying your data - https://developers.google.com/chart/ Just grab the data our of your database, add it to a formatted string, and BAM, instant pretty graphs.
  10. D

    Redirecting multiple pages to a single page

    Go with crazycroc's recommendation and let the program do the work for you. If you need help with it, post your code.
  11. D

    Google Webmaster Central Blog

    I have been following the Google Webmaster Central Blog for a couple of years, and even though much of the information is quite basic, it does, from time to time, contain some information that has proved to be quite useful. http://googlewebmastercentral.blogspot.ca/
  12. D

    Google Plus

    I have noticed this too NickJ. Google +1 seems to be used by a small, select niche of people. Anyone with tech articles will benefit from +1's, but if you are targeting a young, non tech market, the chances of getting a +1 are very slim.
  13. D

    Firefox or Chrome?

    I used to be a huge fan of FireFox, but when it became bloated and slow, I switched to Chrome. It is much faster, and I prefer the developer tools in Chrome.
  14. D

    How Fast Do You Type?

    I am not a fast typist- only 31 words a minute for me. I am self taught, and do not look at the keyboard....I have a lot of bad habits too.
  15. D

    Where did you learn HTML?

    When I learned html, there was no such thing as CodeAcademy or the other tutorial sites. I had to go through the specs and figure it out myself.
  16. D

    What's the best serverside language to learn for small sites?

    It isn't so much a matter of "better" - it all depends upon what you want to do. In my opinion, php is "best" because that is what most of the sites have been using for quite a few years.
  17. D

    trying to put html examples in a html page, but page reads it as html and renders it

    You have to encode your html entities. Example: < &#8230; &lt; > &#8230; &gt; & &#8230; &amp; " &#8230; &quot; This page will do it for you: http://htmlentities.net/
  18. D

    using the reply from a if statement to display a result

    Since the only real test is for abc, it would be easier to do this: if ( abc == 'yes' ) { alert("you can apply"); } else { alert("no"); }
  19. D

    Any good tutorials on learning Web Fundamentals?

    Don't forget http://www.tizag.com/ - excellent resource for beginners.
  20. D

    The 3 basic formatting features of HTML

    RemainAnon - those tags are outdated. For example, from: http://www.w3.org/International/questions/qa-b-and-i-tags
Back
Top