If you know NOTHING abt those codes like me, these are great tips to follow. Simple and easy, to make a great site (instead of using a boring template in software), and 100% FREE:
step 1: Download a software:
Macromedia Dreamweaver is standard software, and absolutely usable for beginners! Lots of others were actually not that "EASY" to understand like they stated in the ads.
Dreamweaver can be downloaded from Adobe for 30day free trial.
Step2: download a FREE web template
these just a few from Free Layouts.com











lots of "free" web templates when yo google it, this site i just find it pretty good , REAL FREE, and keep updating templates
Step3:
build up your web-pages... basic just like writing a blog post, or if you want to learn a bit Html, check on the google, or in software (it lists each Html tag and how to use it)
It's easy to save all the images you download in your local driver, in case some might not exist if you only put a link to that image.
For all the other features like flash, music, pop up windows, etc. can download it from special sites. or a more easy way: using FireFox, right click, "view page source", then it opens a window with all codes for that webpage. if you want to find a image on it, just click "find", put "jpg" to search the image. Easy way to find a feature you want (AND you can't read codes), I copy the whole page of codes, then paste on to the code edit window of Dreamweaver, click "compose" window: you should be able to see the webpage (or at least a few features). then just simply switch back and forwards between code and compose window, to select the part you want, get the code, copy / paste the code to your own page.
"swf" is the simplest flash format , sometimes you can be lucky to find "swf" in page code, then can stick it into yours just like a image. Others , you need to use software for assist.
this one is great, MUCH smaller size compared to Adobe CS3, but have ALL the useful functions, and FREE 30 days. I like it a lot coz it help you make flash (if you want to make one yourself) so easily (don't need to know anything)



it also have transfer between FLV and swf, and video , etc.
do remember put pictures and flash in one folder
Step 4: save pages you've made to html format usually. if your page has some features like JavaScript flash, or other type of code rather than html, e.g. php, css, ffhtml. A bit work up need to be done to validate your software to those codes: like in Dreamweaverm, 5quick steps to make sure you won't receive any error when people using different browser: IE, FireFox, etc.
Five steps to more professional pages with Dreamweaver MX
Drew McLellan
Step 1: Export your JavaScript and CSS to external files
Although you may think that keeping all your code in your base page is convenient for editing, it's a big bandwidth-waster. By moving JavaScript and Cascading Style Sheet (CSS) code out of the section of each page and into central files, you accomplish two useful things:
- You centralize your code. If you must make changes to your code, you only have to do it once instead of once for every page that uses it.
- You save bandwidth. The client browser only downloads your JavaScript and CSS files once, rather than once per page.
To accomplish this task, first find any JavaScript functions in the of your documents. Here's a typical example:
Link the CSS file to your web page by putting a link to the CSS file in the page's section:
Step 2: Export your site without template mark-up
Dreamweaver MX uses HTML comments to store meta-data within documents. These comments allow features like templates and library items to work. Although these features are extremely useful while you build your site, these comments can waste bandwidth and give your pages an unprofessional look once your files are on the production website.
Dreamweaver can strip out these comments for you into a new, cleaned-up version of your site. (Don't lose the comments in the version you're working in, however, or else your templates will break.) To do this, choose Modify > Templates > Export Without Markup from within your site. Browse to a new location for your cleaned-up site and click OK.
Step 3: Future-proof your site with XHTML
HTML has reached the end of its life and is no longer being developed as a mark-up language. Its replacement is Extensible HTML (XHTML)—an implementation of XML that works in all browsers, old and new. Even though XHTML is strict XML, its tags and attributes are so similar to HTML that old browsers do not spot the difference. Using XML is advantageous because it's a modern, future-proof standard.
If you code by hand, there are a few things you need to learn about XHTML before you convert your files. For example, the XHTML standard prefers non-empty attributes and correctly paired and nested tags. (Read about the differences between HTML and XHTML in Dan Short's article, "Coding Standards Using XHTML.")
If you work in a visual environment like most users, it's easy to turn your pages into XHTML beauties:
- If you're starting a new page, be sure to check the Make Document XHTML Compliant option in the bottom corner of the New Document window.
- If you have an existing page in HTML, convert it to XHTML by choosing File > Convert > XHTML.
Easy as pie.
Step 4: Tidy up your code with the Apply Source Formatting command
With long and complex pages, it soon becomes difficult to find your way around the page in Code view. Any professional programmer can tell you about the importance of well-presented, carefully indented code.
Here are some benefits in keeping your code nicely formatted:
- You never know who's going to make changes to the code after you're done with it. What if your client comes back for some changes while you're on vacation? Your coworker should be able to pick up your page and understand it.
- What's clear today will not be clear four months later. Even if you edit your own page in a few months, your familiarity with the code then may not carry over and help you understand your code now. Neat code formatting helps you see what's going on.
- What if your client gets curious and views the source code on their site? Would you like them to see a big jumbled mess or neat code that looks like every darn tag was lovingly carved from a matchstick? (I'm betting on the latter.)
This doesn't mean that you have to spend ages cleaning up your page before uploading it to the server. Dreamweaver MX makes life easier: Choose Commands > Apply Source Formatting after editing a page, and you're done.
Step 5: Validate your page to find basic errors
You'd be amazed how many professional web developers don't know that there are tools out there to help them fix their code. You can eliminate most browser compatibility problems from your page by simply checking that the code is correct—by running it through a validator. The hardest part about fixing little problems is finding them in the first place. This is where a validator helps.
Dreamweaver MX users have two ways to validate their code. The first way is in Dreamweaver. Ensure that you have saved the page you are working on. Then select File > Check Page. Select either Validate Markup if your page is HTML or Validate as XML if your page is XHTML. The Results panel will pop up with a list of any problems it encounters.
The second way to validate your page is to use the online validation tools of the World Wide Web Consortium (W3C). You can validate all flavors of HTML and XHTML, as well as your CSS files. You can find the validators on the W3C website home page:
- HTML and XHTML Validation Service (http://validator.w3.org/)
- CSS Validation Service (http://jigsaw.w3.org/css-validator/)
It's really quite staggering to see the difference in the page after you fix minor errors. For instance, an improperly nested tag can prevent a page from appearing in one browser yet allow the page to appear fine an another browser. This alone is a great reason to make code validators do the hard work for you.
About the author
Drew McLellan is the author of Dreamweaver MX Web Development (dreamweaverfever.com/dwd/) from New Riders, as well as an extension writer and all-around Dreamweaver good guy. He runs DreamweaverFever.com, and helps folks out in various support forums as a Team Macromedia volunteer. In the real world he's a feet-on-the-ground web development manager for an agency on the outskirts of London.Continued on web publish , web host, traffic, ads..... FREE




0 comments
Post a Comment