Doubts About First Website

Discussion in 'HTML & Website Design' started by mekap04, Nov 29, 2012.

  1. #1
    I thought I'd take a shot of building my own html website and this was the result http://esurveyprofits.com It looks okay but I know under the hood can be a bit better. Any of you guys got any suggestions? Also, two other questions.

    Is there a way to edit html code on multiple pages at the same time? It sucks having to make html changes to each page on a website.

    Is there a way to get the content to load first and then the site background? I noticed that when it takes a second to load, it only shows the blue background and then loads the content. I think I may already know the answer to this one but not too sure. I believe I just have to put the body html markup higher in the code.
     
    mekap04, Nov 29, 2012 IP
  2. PinoyEngine™

    PinoyEngine™ Well-Known Member

    Messages:
    298
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    145
    #2
    1. You have quite a talent in HTML coding to have such beautiful outcome. Honestly, I do not think this is your first layout.

    2. Then you need to learn PHP, for shortcut use content management system(CMS) to handle such problems.

    3. Code Positioning my friend. If you will make the content written first before the background in your HTML files, then it will load first before the image.
     
    PinoyEngine™, Nov 29, 2012 IP
  3. Rocketwt

    Rocketwt Peon

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Nice website I think.
     
    Rocketwt, Nov 29, 2012 IP
  4. mekap04

    mekap04 Active Member

    Messages:
    497
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    75
    #4
    1. Thank you for the compliment. It is my first attempt at coding my own html website though. Watched dozens of youtube videos and read lots of articles.
    2. Thought that may be the case. Seems like a difficult task.
    3. Ok, but looking at my code, I'm still not sure where to put the content container so that it loads before the website background.
     
    mekap04, Nov 29, 2012 IP
  5. PinoyEngine™

    PinoyEngine™ Well-Known Member

    Messages:
    298
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    145
    #5
    An example of CMS is wordpress.
    Who knows, with your talent at HTML you can make premium wordpress templates.
     
    PinoyEngine™, Nov 29, 2012 IP
  6. Rukbat

    Rukbat Well-Known Member

    Messages:
    2,908
    Likes Received:
    37
    Best Answers:
    51
    Trophy Points:
    125
    #6
    You can do a quick and dirty brute force by changing the page file name to end in .php instead of .html. Then, wherever you want duplicated content, like the menubar at the top, just use PHP code, like

    
    <?php
    include('menu.php');
    ?>
    
    Code (markup):
    Then write a file named menu.php that has the menu code in it (just plain old HTML/CSS). In the future, if you want to change the menu, you change menu.php and every page on the site will have the new menu. Do the same thing for the right side of the site, if you have it all in one place and position it with CSS. (I didn't look at the source.)

    I will say, however, that there are probably many Wordpress themes that look a lot like your site, and using Wordpress with one of them will probably make life a lot easier for you. And if you learn to make your own themes, you can make the theme look exactly like your current site. The Ultimate WordPress Theme Tutorial is a good place to start if you want to learn WP themes.
     
    Rukbat, Nov 30, 2012 IP
  7. jainteq

    jainteq Member

    Messages:
    33
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    43
    #7
    Hey

    you have posted Good Question ? Remaining friends say is too good for you, try learn php you can manipulate in website design code in php site you can make secure .

    Website Development Company in India
     
    jainteq, Nov 30, 2012 IP
  8. promowebeveron

    promowebeveron Member

    Messages:
    439
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    48
    #8
    The design is pretty good, must say you have done a good work for your website.
     
    promowebeveron, Dec 3, 2012 IP
  9. dannyrocks

    dannyrocks Peon

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Hi,
    That good really great at your first attempt my friend...try to use light colors rather than dark ones...use css3 for better user interface,
     
    dannyrocks, Dec 3, 2012 IP
  10. bowodesign

    bowodesign Member

    Messages:
    55
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #10
    nice design mate, just suggestion on logo dont use blue border on darkgreen text, not really nice, n change the background color, #0F5400 maybe better looking
    about your problem on edit multiple page, like rukbat said you can including part that have same design on every page exp header, sidebar and footer, so you just need to edit 1 times for all page
     
    bowodesign, Dec 3, 2012 IP