web design and web development

batorude

New Member
Messages
7
Reaction score
0
Points
0
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:

devilxsc

New Member
Messages
2
Reaction score
0
Points
0
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 a moderator:

misson

Community Paragon
Community Support
Messages
2,572
Reaction score
72
Points
48
@devilxsc: don't multi-post, and keep your posts to the appropriate forum.
 

walidno1

New Member
Messages
395
Reaction score
0
Points
0
Always respectful of free service providers :)

Guess you are working for your portfolio?
 

essellar

Community Advocate
Community Support
Messages
3,295
Reaction score
227
Points
63
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:
<!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:
<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:
<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:
<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:
<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:
<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:

rajdeep01

Banned
Messages
66
Reaction score
0
Points
0
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.
 

pipi1004

New Member
Messages
15
Reaction score
0
Points
0
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:

jayanta1

Banned
Messages
41
Reaction score
0
Points
0
Web development is a broad term for the work involved in developing a web site. Web development can range from developing the simplest static single page of plain text to the most complex web-based internet applications, electronic businesses, and social network services. Web design encompasses many different skills and disciplines in the production and maintenance of websites. The different areas of web design include web graphic design; interface design; authoring, including standardized code and proprietary software; user experience design; and search engine optimization.

It is important for companies to make their clients aware that a successful website requires excellent design and development. Good website design is required to make the website attractive and easy to use. Good website development is required to give the website interesting features and functions. Ideally, web designers and web developers should work together to retain visitors and encourage return visits. Design and development are equally important.
 
Top