Page 1 of 2 12 LastLast
Results 1 to 10 of 14
Like Tree4Likes

Thread: web design and web development

  1. #1
    batorude's Avatar
    batorude is offline x10Hosting Member
    Join Date
    Dec 2011
    Posts
    7

    web design and web development

    Hello,
    I'm a web developer (php, javascript;codeigniter and jquery as frameworks) and designer. Check out my website at: batorudesign.elementfx.com
    Feel free to contact me for a web design or a programming project, or just to say Hi!

    P. S.: I have to mention that on the "projects" page I posted the jpeg images (the originals are psd files). These jpeg images belong to the category named "Web layouts". Soon I shall add more categories ("web development" and "css projects" are two of them). The site is meant to be expanded on multiple dimensions. I hope that this note is helpful and you like what you see. I am able to code (CSS) any of the layouts on my site.
    Last edited by batorude; 07-01-2012 at 04:17 PM.
    karthi22 and jkicks1975 like this.

  2. #2
    devilxsc is offline x10Hosting Member
    Join Date
    Jun 2012
    Posts
    2

    web design and web development

    i got a templet but i cant able to import it to my site... plzz help me ... what to do???

    --
    Do not hijack or spam other threads ~ SJWolfe
    Last edited by SierraAR; 07-01-2012 at 03:27 PM.
    jkicks1975 likes this.

  3. #3
    misson is offline x10 Spammer
    Join Date
    Mar 2008
    Location
    Libertatia
    Posts
    2,573

    Re: web design and web development

    @devilxsc: don't multi-post, and keep your posts to the appropriate forum.
    Be sure to read all pages linked in this post; they have further information that should prove useful. When asking for help, make sure you follow Jon Skeet's and Eric Raymond's guidelines for prompt, accurate responses. Please answer any questions I ask; they're not rhetorical (probably). Any posted code is intended as illustrative example, rather than a solution to your problem to be copied without alteration. Study it to learn how to write your own solution.
    Misson, not Mission.

  4. #4
    min_d_jee75's Avatar
    min_d_jee75 is offline x10Hosting Member
    Join Date
    May 2011
    Location
    Montréal, QUébec, Canada
    Posts
    40

    Re: web design and web development

    Nice website!

  5. #5
    batorude's Avatar
    batorude is offline x10Hosting Member
    Join Date
    Dec 2011
    Posts
    7

    Re: web design and web development

    Quote Originally Posted by min_d_jee75 View Post
    Nice website!

    Thank you! Stay tuned, I shall add more stuff.

    Best!
    jkicks1975 likes this.

  6. #6
    mukhi is offline x10Hosting Member
    Join Date
    Mar 2010
    Posts
    23

    Re: web design and web development

    Quote Originally Posted by batorude View Post
    Thank you! Stay tuned, I shall add more stuff.

    Best!
    Awesome wesite bro !!!

  7. #7
    walidno1 is offline x10 Lieutenant
    Join Date
    Oct 2007
    Location
    Bangladesh
    Posts
    395

    Re: web design and web development

    Always respectful of free service providers

    Guess you are working for your portfolio?
    visit my website as a sign of appreciation :D
    Get professional logos designed FOR FREE!!!

    link: http://www.myriadlogoworks.co.nf--->>>FREE LOGO DESIGNER.....NO CHARGE....SERIOUS!!!

  8. #8
    essellar's Avatar
    essellar is offline Community Advocate
    Join Date
    Feb 2010
    Location
    Toronto, Ontario, CA
    Posts
    1,683

    Re: web design and web development

    Not bad, but it could be better. Remember that people are going to be judging the quality of your services based on your site, and that at least some of the work that might come your way will be coming from designers/developers who either don't have the time for a particular job or can't work within the client's (usually unrealistic) budget. That means that you need something that is more than surface pretty; it needs to be beautiful to the core.

    The first thing to do is to get out of the XHTML habit. The xhtml 1.x transitional doctype didn't really solve any problems; it just made the markup syntax needlessly complex by requiring a closing solidus on unary (non-container) tags, and you still had to leave a space before the solidus or the browsers of the day would reject the markup as invalid. And you needed to include the silly DTD URI and namespace, neither of which were used by the browser for anything except a standards/quirks mode flag (no user agents actually fetched the DTD). Make friends with the new HTML doctype...

    HTML Code:
    <!DOCTYPE html>
    ... and forget that anybody ever suggested <hr /> or <br /> in the first place. XHTML was a poorly-reasoned answer to a problem that it never actually solved (it actually introduced more problems than it solved, since as an XML dialect it doesn't enforce sibling element ordering) and it has been dead-ended. The only possible excuse for using it is if you're designing/developing for IE6 in a closed corporate environment (and pity those who are stuck doing that).

    I noticed that your links are all absolute, in this format:

    HTML Code:
    <a href="http://batorudesign.elementfx.com/imagine.php?nume_fisier=first_point.jpg" title="First Point">
    Don't do that for internal links, ever. Use server-relative URLs for internal links, and protocol-relative URLs for external ones. Server-relative links begin with a solidus:

    HTML Code:
    <a href="/imagine.php?nume_fisier=first_point.jpg" title="First Point">
    The browser will fill in the http://barotudesign.elementfx.com part automatically. Doing things that way means that you don't need to change the URLs when you change domains, and that if you have multiple domains (an add-on or parked domain in addition to your elementfx.com subdomain), the user is never surprised by a sudden trip to a web site they hadn't meant to visit. They don't notice that it's the same site -- if they head to, say, batorudesign.com and are redirected to batorudesign.elementfx.com, they're going to assume that you've been hacked and they've been hijacked. Similarly, you should never force a protocol on your users. It doesn't make a lot of difference here on Free Hosting, since there is no option to use HTTPS/SSL, but if you ever move hosting or design for someone else who has the SSL option, forcing a protocol can cause some users to bounce due to privacy concerns (if they're using HTTPS and you force them to HTTP), or may prevent them from accessing your site (if their company, hotspot or ISP blocks HTTPS requests and you try to force them in that direction). Resources linked externally will also cause the "mixture of secure and unsecure content" warning, and may prevent the browser from opening the page. A protocol-relative URL begins with two solidi:

    HTML Code:
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
    In this case, the browser will fill in either http: or https:, depending on what the user was already using.

    In your meta tags, you've put the content attribute before the name, which makes it hard to read and modify. People notice things like that, and anything you do that makes it look like your code will be difficult to maintain is a red flag. The same goes for your indentation/white space and seemingly-random line spacing -- clean that up. White space may be (mostly) irrelevant to the browser, but keep in mind that

    ... programs must be written for people to read, and only incidentally for machines to execute.
    Structure and Interpretation of Computer Programs, Preface to the First Edition
    What people see when they view the source matters, particularly if you are building a portfolio so that you can eventually make a living at this, either as a paid freelancer or if you're looking to be hired by a design/development/consulting company. A sloppy page source like building a really nice looking car that gives people nightmares when they lift the hood/bonnet -- it doesn't matter what the paint job looks like, they're not going to buy it.

    Oh, and do try to get out of the habit of doing this:

    HTML Code:
    <p>
       This is the paragraph content.
    </p>
    A line break is supposed to be interpreted as significant white space, equivalent to ASCII character 32. User agents that get it right should put a space at the beginning and end of the paragraph; that none of them do at the moment (and many used to) is just a temporary lucky break for people who have developed XML habits in an SGML world, or who think all "computery" stuff should behave like C. (In XML, you wind up with an extra empty text node, which can make DOM traversal hard. And the tab or spaces you've used to indent should also count as significant white space, collapsed to a single space.) The proper markup is this:

    HTML Code:
    <p>This is the paragraph content.</p>
    Sorry that this has turned into a full-scale review, but your work is mostly good, and avoiding just a few pitfalls will greatly increase the probability that you'll get work in the future.
    Last edited by essellar; 10-05-2012 at 06:40 AM.
    “Beware of bugs in the above code; I have only proved it correct, not tried it.” --Donald Knuth
    "It was as if its architects were given a perfectly good hammer and gleefully replied, 'neat! With this hammer, we can build a tool that can pound in nails.'" -- Alex Papadimoulis (on TheDailyWTF.com)

  9. #9
    rajdeep01 is offline x10Hosting Member
    Join Date
    Dec 2012
    Posts
    66

    Re: web design and web development

    Web development is the back-end of the website, the programming and interactions on the pages. A web developer focuses on how a site works and how the customers get things done on it.

    Web design is the customer-facing part of the website. A web designer is concerned with how a site looks and how the customers interact with it. Good web designers know how to put together the principles of design to create a site that looks great.

  10. #10
    pipi1004's Avatar
    pipi1004 is offline x10Hosting Member
    Join Date
    Jan 2013
    Location
    New York
    Posts
    16

    Re: web design and web development

    The website look very nice. Your designs is clean and modern style. I think you can do some sample design and upload some marketplace (like themeforest) to get more sales.

    By the way, Are you familiar with e-commerce web design? I'm working at a new Modern Magento Themes team and may need your design help in the near future. (you can take a quick look here one of our Themes: Mobile Magento Theme, click on Live Demo) Feel free to contact me via our site.

    Good luck,
    Last edited by pipi1004; 01-05-2013 at 01:40 AM.

Page 1 of 2 12 LastLast

Similar Threads

  1. zetaNetwork - Web Development and Design Community
    By protego8 in forum SEO, Promotion, Advertising
    Replies: 0
    Last Post: 05-29-2011, 05:11 AM
  2. zetaNetwork - Web Development and Design Community
    By protego8 in forum Review My Site
    Replies: 3
    Last Post: 05-25-2011, 06:13 AM
  3. link exchange software development, tech, web design
    By Alesia in forum SEO, Promotion, Advertising
    Replies: 16
    Last Post: 02-26-2010, 06:34 PM
  4. Link exchange software development, web design
    By Alesia in forum SEO, Promotion, Advertising
    Replies: 4
    Last Post: 01-20-2009, 10:15 AM
  5. Quick Design Development
    By goldy30 in forum Off Topic
    Replies: 5
    Last Post: 09-28-2008, 11:11 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
dedicated servers