Build A Website

Pages: 1, 2
free web hosting

Read Latest Entries..: (Post #13) by Athleone on Sep 28 2008, 06:55 AM. (Line Breaks Removed)
For websites, I like my code raw. I usually compose it in something like Notepad++. However, for people new to the web coding scene, I suggest you use a WYSIWYG (What You See Is What You Get) editor like Dreamweaver. Personally, I started coding raw from the very beginning, but I guess I'm not normal ... read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion > CONTRIBUTE > Computers > Programming Languages > HTML, XML etc..

Build A Website

bittu
Anyone know which is the best software to make a website with great features and ease. i want to make a cool website so please help me. thanx

Reply

chappill
I use open office, it has a HTML website building feature and it's free! Or use dream weaver, it's very advanced but easy to use, I don't have it at home because wine (windows emulator) doesn't run it and i doesn't run on Linux but we have it at school and its OK! In my opinion though, nothing beats a little bit of knowledge, notepad and if you need it Google.

Reply

sonesay
Hey and welcome. I know your new here since you've been posting a lot of content that is either in the wrong forum or contribute little to what is already present at these forums. I just want to say that your only going to get credits deducted because they will have to be moved or deleted later by the moderators. Make sure you understand how this forum works if you are serious about getting hosting here and eventually a domain. So my advice is make sure you understand the rules by reading the read-me page for new members and refrain from posting just for the sake of gaining credits.


read-me
http://www.trap17.com/forums/index.php?act...E=01&HID=18

Reply

Live-Dimension
I agree with sonesay. However, for someone at your (apparent) level, Dreamweaver is a good start.

Reply

shadowx
As said for a beginner a WYSIWYG (What you see is what you get) editor like dreamweaver is a good start. Google "FREE WYSIWYG Editor" and see what you can find, but also as said nothing beats coding a site from scratch so try learning HTML smile.gif

Reply

blackmelo
i can highly recommend www.htmlgoodies.com

I have learnt pretty much all i know from that site. It has an excellent tutorial and after a couple hours each day you will be a pro at html programming using just notepad within a week.

It really helps do sketch the layout of your site on paper and then divide it all into tables.

I have never properly used Dreamweaver but friends of mine have asked to fix code of theirs cause dreamweaver wouldn't always set up the tables like you want them..

But i agree, dreamweaver is a good simple program that does not require much know how of programming.

Maybe get dreamweaver and just follow the table tutorial on htmgoodies. Once you have fully understood how tables work you will be able to make any webpage layout look good. Look at this page, basically just lots of boxes all set up aligned with each other.
All of them are tables and it gets a bit tricky sometimes figuring out how to make them all fit how you have drawn in on paper but it's not too hard once you get the hang of it.

Reply

Echo_of_thunder
Well I agree with all above about dreamweaver, but one thing. Price. If your new to making a site, I would have to say to look around on the net for freeware, or even trial software such a coffeecup. This is what I did when I 1st started to learn the in and out of thing.

Good Luck and have fun.

Reply

krazygoddess
For HTML I recommend Microsoft Front Page, It is my favorite HTML editor I think it is by far the easiest to use and gets the job done. I have used dreamweaver and its not to bad i think Front Page is much easier to use.

Reply

mikeyboy63
I assume that you just want to create a simple site and that you're not looking to become an html and CSS guru, so I'd recommend downloading a free program called NVU. You can download it from www.download.com.

Remember to create your page in a table. Otherwise, your page elements will move around on a visitors browser depending on their screen resolution and screen size. In other words, if you create your site on a computer with a 15 inch monitor and you write a 5 sentence paragraph on your site, and somebody views your site with a 20 inch monitor, your 5 sentence paragraph will now be a 1 or 2 sentence paragraph stretching across the screen! And if you're typing text around graphics or pictures, the formatting will be a mess. So use a table, and place each unique element in its own cell.

Technically, CSS with Divs, absolute positioning, is the simplest way to create a web page. I just think it's more difficult to code CSS if you've never used it. A table is easier. This assumes that you've used tables before, or Excel.

If you'd like to do it right, though, I think NVU will code in CSS, but remember to use Divs (dividers) with absolute positioning.

 

 

 


Reply

Live-Dimension
Don't get caught in the trap of needing tables for anything but tabular data, because it doesn't follow standards, and clients tend to want standards-compliance.

Reply

Latest Entries

Athleone
For websites, I like my code raw. I usually compose it in something like Notepad++. However, for people new to the web coding scene, I suggest you use a WYSIWYG (What You See Is What You Get) editor like Dreamweaver. Personally, I started coding raw from the very beginning, but I guess I'm not normal wink.gif

Reply

pedro-kun
Why do people keep insisting that notepad is good for web page development? WHY? I mean, yes, notepad can read plain text files perfectly, but does it have any syntax highlighting? Of course not. Try making BIG scripts or html files without syntax highlighting, it's a real pain in the butt.
If you want to become a good webdeveloper, know your limits: Nvu is good if you have no coding knowledge, but if you do, please just download a decent HTML code editor! (Bluefish, for example... VIM, Emacs, Notepad++, even Notepad2 will do right).
Also, make sure you have Firefox and Opera installed (to check how your site works on both), especially Firefox. Then install the Webdeveloper Toolbar extension. Also install Firebug and possibly YSlow. These will help debug your site more easily.

As for graphics and such, just download and install Inkscape and The GIMP. And don't even bother saying that The GIMP is hard to use. No it's not. It just has too many windows. Other than that, you can get pretty much everything done with it and Inkscape. If you have pixel-art needs, just go ahead and use mtPaint.

And to top it all, make sure you run a local webserver to speedup the creating-testing-correcting process. You can install Apache, PHP and MySQL separately, or you can download a pack with all three of them, such as XAMPP. If you're new to this, I'd recommend using XAMPP. Also, don't forget to grab an FTP client, such as Filezilla.


A piece of advice: don't EVER use Word's or OpenOffice's "HTML capabilites"; they're just plain wrong. Always try to make sites that validate with the current standards (you can validate them easily on different validators using the Webdeveloper Toolbar I mentioned before). Another thing, too. Most of the programs I mentioned are open-source, and can be run in any operating system (except Notepad++ and Notepad2). Also, try to NOT use flash animations and javascript. If you do have to use them, make sure the page graciously degrades for people that don't have flash/javascript. Build your Webpages with structure in mind, and not the looks! Worry about the looks later, when you get to CSS. Make sure you properly set these two domains (structure, presentation) clearly appart! It will save you time and frustration ;)
Documentation on HTML markup is abundant in the web. So is PHP and MySQL documentation (you can check out their sites; they're pretty good for that).

Remember that webdevelopment can be made for free. Don't resort to dreamweaver unless you really really have to. Also, follow the standards... They were made for some reason ;)

Reply

dave2win
Well actually you can't use a single software to develop all your needs. I would suggest you do your man structural work on Adobe Dreamweaver. It was previously with Macromedia but Adobe bought it recently. Thery are marketing it with their CS3 Pack

A short intro...

CODE
Adobe Dreamweaver is a web development application originally created by Macromedia and now owned by Adobe Systems, which acquired Macromedia in 2005.

Dreamweaver is available for both Mac and Windows operating systems. Recent versions have incorporated support for web technologies such as CSS, JavaScript, and various server-side scripting languages and frameworks including ASP.NET, ColdFusion, JavaServer Pages, and PHP.

Features

As a WYSIWYG Presto-based editor, Dreamweaver can hide the details of pages' HTML code from the user, making it possible for non-coders to create web pages and sites. A professional criticism of this approach is that it produces HTML pages whose file size and amount of HTML code is much larger than they should be, which can cause web browsers to perform poorly. This can be particularly true because the application makes it very easy to create table-based layouts. In addition, some web site developers have criticized Dreamweaver in the past for producing code that often does not comply with W3C standards, though recent versions have been more compliant. Dreamweaver 8.0 performed poorly on the Acid2 Test, developed by the Web Standards Project. However, Macromedia has increased the support for CSS and other ways to lay out a page without tables in later versions of the application, with the ability to convert tables to layers and vice versa.

Dreamweaver allows users to preview websites in many browsers, provided that they are installed on their computer. It also has some site management tools, such as the ability to find and replace lines of text or code by whatever parameters specified across the entire site, and a templatization feature for creating multiple pages with similar structures. The behaviors panel also enables use of basic JavaScript without any coding knowledge.

Dreamweaver can use "Extensions" - small programs, which any web developer can write (usually in HTML and JavaScript). Extensions provide added functionality to the software for whoever wants to download and install them. Dreamweaver is supported by a large community of extension developers who make extensions available (both commercial and free) for most web development tasks from simple rollover effects to full-featured shopping carts.

Like other HTML editors, Dreamweaver edits files locally, then uploads all edited files to the remote web server using FTP, SFTP, or WebDAV.

Syntax highlighting

As of version 6, Dreamweaver supports syntax highlighting for the following languages out of the box:

    * ActionScript
    * Active Server Pages (ASP)
    * ASP.NET
    * C#
    * Cascading Style Sheets (CSS)
    * ColdFusion
    * EDML
    * Extensible HyperText Markup Language (XHTML)
    * Extensible Markup Language (XML)
    * Extensible Stylesheet Language Transformations (XSLT)
    * Java
    * JavaScript
    * JavaServer Pages (JSP)
    * PHP: Hypertext Preprocessor (PHP)
    * Visual Basic (VB)
    * Visual Basic Script Edition (VBScript)
    * Wireless Markup Language (WML)

It is also possible to add your own language syntax highlighting to its repertoire.

In addition, code completion is available for many of these languages.

Version history

    * Dreamweaver 1.0 (Released December 1997)
    o Dreamweaver 1.2 (Followed in March 1998)
    * Dreamweaver 2.0 (Released December 1998)
    * Dreamweaver 3.0 (Released December 1999)
    o Dreamweaver UltraDev 1.0 (Released June 2000)
    * Dreamweaver 4.0 (Released December 2000)
    o Dreamweaver UltraDev 4.0 (Released December 2000)
    * Dreamweaver MX (Released May 29, 2002. Version 6.0)
    * Dreamweaver MX 2004 (Released September 10, 2003. Version 7.0)
    * Dreamweaver 8 (Released September 13, 2005)
    * Dreamweaver CS3 (Released April 16, 2007. Version 9.0)

Internationalization and localization

Language Availability

Adobe Dreamweaver CS3 is available in the following languages: Arabic (Middle Eastern version), Chinese Simplified, Chinese Traditional, Czech, Dutch, English, French, German, Hebrew (Middle Eastern version), Italian, Japanese, Korean, Polish, Russian, Spanish, Swedish, Turkish.
Adobe Dreamweaver Middle Eastern language versions available from WinSoft[1].

Specific Features for Arabic and Hebrew languages

Dreamweaver Middle Eastern versions allow typing Arabic or Hebrew text (written from right to left) within the code view. Whether the text is fully Middle Eastern (written from right to left) or includes both English and Middle Eastern text (written left to right and right to left), it will be displayed properly in the browser.

The Middle Eastern versions are also available for Adobe Acrobat, Adobe Photoshop, Adobe Illustrator, Adobe InDesign, Adobe InCopy and for Adobe Creative Suite (Design Standard, Design Premium, Web Premium).

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Pages: 1, 2
Recent Queries:-
  1. build a free website from scratch - 9.29 hr back. (1)
  2. build a chinese website - 33.21 hr back. (1)
  3. please help i have made my website in dreamweaver and photoshop and its not looking same in all browsers - 93.11 hr back. (1)
  4. create website mirror in visual basic - 112.65 hr back. (2)
  5. build a website without limits - 232.49 hr back. (1)
  6. code and build websites with gimp - 266.70 hr back. (1)
  7. build a website without having to install stuff - 267.36 hr back. (1)
  8. blendtrans dreamweaver - 277.09 hr back. (1)
  9. "dreamweaver" "tutorial" "version 6" - 319.71 hr back. (1)
  10. notepad to write a website - 438.28 hr back. (1)
  11. build a flash website from scratch easy to use free software - 481.96 hr back. (1)
  12. how do i make a flash website to suit different screen resolutions? - 545.28 hr back. (1)
  13. download dreamweaver cs3 hebrew plug in - 547.72 hr back. (1)
  14. javaserver pages notepad2 - 558.37 hr back. (1)
Similar Topics

Keywords : build, website

  1. Website Drop Shadow Effect Help
    (7)
  2. Website Problems Please Help
    Unwanted gap between the welcome bar and flash. (6)
    I just set up this website, none of the links are in working condition yet. This is mainly because
    im trying to get rid of this anoyying gab in between my flash object and my welcome bar (its the
    small dark grey/brownish gap). Does anyone know exactly how to fix this without messing anything
    else up vis changing the code or possibly even the size of the flash? Thanks. Here is the website:
    http://www.childrenofconan.trap17.com/ Moved to html section in anticipation of that being the
    correct Forum ....
  3. Making This Website Automatically Scale For Browsers
    (1)
    Hi I am trying to scale the code below so It can be used for a furniture business website
    successfully, heres the code: "http://www.w3.org/TR/html4/loose.dtd"> Home
    Lorem ipsum quaeque
    eripuit probatus id usu, nec ea dos epic uri verterem, quando tempr et mei. Eam equidem erroribus
    an, id nam illum perse- cuti read more 12/20/2007 Lorem ipsum
    quaeque eripuit probatus id usu, nec ea dos epicuri verterem, quando tempr ....
  4. Help With Website Layout Correction For All Browsers
    Page gets larger on Firefox 2 (4)
    If you go to my site at http://boozkerstweaks.trap17.com and you look at the home page everything
    is fine on all browsers. Problems start to arise very soon however. Here is my list of problems and
    i was wondering if someone could help with just whats wrong. I have done a HTML validator and found
    only 3 errors and all these problems still occured. You might find more now though because i am
    screwing around with the code. Here is the list of browsers and errors: Netscape 8.1: After you
    click on the pulldown menu and click the only tweak avaible at the moment the pag....
  5. How To Make Cms For My Dynamic Website?
    A Content Management System (3)
    It is a pain trying to have to write new code everytime you want to change something on my website.
    I know there is an easier way to update content. I read about COntent Management systems which
    apparently use XML. When I would enter the administartion area there woudl be dynamic fileds in
    which I could edit the data and when I click submit it would change. The thing is that I know how
    to add these forms to a page but I dont know how to create an adminstration area. I use php and one
    of my friends said to use XML. I have a book but it is taking a long time to read.....
  6. Background Image Picture On A Website
    how do u make a pic a backround?? (3)
    ?email me if u know! Trap17 forum asks you to post contributes with substance. ....
  7. Website Deployment Problems
    (3)
    Hello, I have developed a website that is specific to IE. The website looks great on my local
    machine. I then move it to my production environment. For some reason, the website now looks
    different when I view it from the production server. The strange thing is... I am using the same
    browser. I always believed that HTML was downloaded to the client and then it was up to the browser
    to render it. Considering I am viewing the webpage using the same browser from my machine... I
    should have received the same thing. Which lead me to believe that I didn't upload it prop....
  8. How Do I Mirror A Website?
    (4)
    After the last batch of hurricanes we lost 5 days of traffic due to power outages in S. Florida.
    What I really want to do is redirect a visitor to a copy of the website if the original site takes
    more than a set amount of time. If heavy traffic causes the original site to take more than 10
    seconds to load I want the visitor automatically redirected to a copy on a different server. Can
    this be done somehow? I'm thinking the requests might have to go through a first server that
    times the two other servers and decides which is the best route. Any ideas? Thanks, ....
  9. Making A Refresh Link On Your Website.
    refresh local webpage (16)
    /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> post it on ur website
    CODE <a href="javascript:this.location.reload();" style="color:
    #000000; font-weight: normal">refresh</a> It can refresh local webpage. U
    can add it at ur forum so that each topic u are reading can be refresh easily. If ur website
    return to homepage after pressing I.E. refresh button, then u must need this coding. /cool.gif'
    border='0' style='vertical-align:middle' alt='cool.gif' /> Beacus visitors only w....
  10. Html Templates
    HTML Templates for website (3)
    Where do i get free HTML Templates to use in look and feel of website? Any link will be
    helpfull....I know there are some free templates available but it is hard to find even by
    gooooogling it. Please, share if you have any. Thank You.....
  11. Website Copy Protection
    (15)
    Hey people, thanks for the help in advance. I notice that my competition refuses to put the time
    into their websites that I do and have been stealing my pages. Copying my web text is one thing, but
    I notice often times my entire page is stolen, from what looks like a 'Save Page As' deal.
    What can I do to protect myself from this web theft, or at least to make it harder. I dont use any
    java, I use straight CSS on all my pages. Thanks. kvarnerexpress....
  12. Ftp Website
    (0)
    hi guys, i am creating an FTP site which will have alot of folders on it each with subfolders and
    so on. the folders will be created every day on a machine and then sent to the site. i wanted to
    know if i can use a custom made DOS program created using the C language to upload the files and
    create the folders on the site or do i have to upload the folders invidually. i am a complete
    novice on FTP sites but have created a client for FTP transfers already, a pointer to a library of
    functions or general help would be gratefully appreciated. i am using VC++ 6 and windo....
  13. I Finally Found A Simple Way To Do A Blendtrans
    - want some cool effect for your website? (1)
    ok, this code isn't supported by some browsers, like Firefox. But it still works for the
    OnMouseOver. This code basically fades one images into another one. Really cool effect
    /biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /> . First thing: build or
    find 6 images, 3 pair. your going to want to build buttons that are close in relation, so they fade
    properly. Name the images as so: image1_on.gif , image1_off.gif image2_on.gif , image2_off.gif
    image3_on.gif , image3_off.gif now put these in a folder called: "images" inside your original....
  14. Optimizing Website?
    (10)
    I am sure there is the way to optimize website, so that is looks exactly how you want in every
    browser. I don't know it, so can somebody help me with that?....
  15. Website Security
    encryption/html function disabling etc. (2)
    Hey Guys, Searched for posts re: webpage security (keeping slimeB*lls from "borrowing" your content)
    on the forums & came up blank. So thought I'd start a string here. OK, so does anyone have any
    info to contribute? Has anyone used html encryption programs? Does this create problems with
    browsers "reading" the page content or other functionality problems? What about webpage/html
    modifications/"updates" after the page has been encrypted? How good is the encryption OR how easy is
    it to hack/crack etc. ??? Anybody? Cheers! PS-Any strings/links in the forums I've....
  16. going to far when designing a website
    all opinions for this one (3)
    how far is going to far to make sure to get those 90 billion hits a day on your website. if your
    creative with your scripting and it makes the user looking at your page happy ok that fine and
    dandy. but if you add all thos high speed tricks to your website like making text flash 6000
    different pop up adds per click QUOTE then you should be drag outside and shot for wasting web
    space /tongue.gif' border='0' style='vertical-align:middle' alt='tongue.gif' /> . but for me
    if its a useful trick like making text pop up if a person wants to know more that cool bu....
  17. Show The Last Update Time Automatically
    very helpful to your website (5)
    After we ourselves upload webpage, will often bring in constant renewal in and add the new content ,
    and how could let net friend to browse through webpage know working hard getting newer one's
    own? Usually we will list the last date that this webpage will be upgraded in one mao of the
    webpage, but if this job is come to do by hand, troublesome and easy to forget. How to solve this
    problem? Having seen this small skill, you will say , it was so simple originally definitely. All
    right, now we do it. The source code pastes the frame : <script language="JavaScrip....
  18. Tips on creating a good website!
    (8)
    1) Navigation: Keep it simple (KISS), and make sure it's consistent from page to page. No matter
    where you place your menu bar -- either at the top or down the side -- always include a small text
    menu at the bottom of every page. If you're one of those people easily impressed with Flash,
    don't design your navigation with it. There are still some people who don't have or want the
    plug-in, so they won't be able to navigate your site. Besides, search engine spiders can't
    read it, so won't be able to spider the individual pages of your site if the....

    1. Looking for build, website

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for build, website

*MORE FROM TRAP17.COM*
advertisement



Build A Website



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE