Can someone teach me how to make webpages

Venom

Seasoned Veteran
Joined
Sep 12, 2012
Messages
3,798
Reaction score
0
FP$
0
so i got dreamweaver but have no clue how to use, and how to make a great site [css rollover, nice buttons widgets etc] i'd much appreciate if someone could teach me how to make great webpages.

i'd also like to learn html code so i can manually code pages aswell.

thanks.

also css so i can format my pages and maybe phpbb.

thanks
 
Dennis8162 said:
so i got dreamweaver but have no clue how to use, and how to make a great site [css rollover, nice buttons widgets etc] i'd much appreciate if someone could teach me how to make great webpages.

i'd also like to learn html code so i can manually code pages aswell.

thanks.

also css so i can format my pages and maybe phpbb.

thanks

I am not familiar with dreamweaver but if you want to learn HTML, http://w3schools.com has some good tutorials, although I would not recommend them for any other languages.

A VERY simple HTML page will look something like this:

Code:
<html>
<head>
 <link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<div id="header">
 <img src="images/logo.png" alt="logo"> 
</div>

<div id="content">
<p>Some text or something</p>
</div>

<div id="footer">
 <p>This is my footer</p> 
</div>
</body>
</html>
 
thanks, i think its becuase i was baffeled by dw and css but im slowly learning from youtune. and i already know basic html. ๐Ÿ˜›
 
Dennis8162 said:
thanks, i think its becuase i was baffeled by dw and css but im slowly learning from youtune. and i already know basic html. ๐Ÿ˜›
Yeah, I wouldnt start out with DW if I were you ๐Ÿ™‚
 
I'm experienced with HTML and even I find Dreamweaver a pain! :O
If you want to learn properly, the best way is to learn to code yourself.
I suggest you start, first of all, by downloading Notepad++. It's free.
Or if you have a Mac then I'd suggest you download TextWrangler.

Then visit http://w3schools.com/html/default.asp to learn how to build your first HTML web page. W3Schools is brilliant because it provides you with examples, a built-in "Try It Yourself" editor, and a wide range of tutorials. I learnt HTML from the very basics to where I am now, from W3Schools.
 
ok thanks.

& i have notepad++ & already use it to code wepages, just wanna improve. thanks anyway. ๐Ÿ˜‰
jsfiddle is a good tool.<br /><br />-- 05 Nov 2012, 02:41 --<br /><br />hmm DW does not look like the software i used at school..

hang on, i think i used adobe fireworks at school.

not sure.
 
Dreamweaver is actually really easy to use once you learn the basics.. However if you really want to learn to properly code, the best thing you can do is teach yourself by trying different techniques.
 
thanks. my sites actually uploaed ๐Ÿ˜› still learning. ๐Ÿ˜›
 
Dennis8162 said:
ok thanks.

& i have notepad++ & already use it to code wepages, just wanna improve. thanks anyway. ๐Ÿ˜‰
jsfiddle is a good tool.

-- 05 Nov 2012, 02:41 --

hmm DW does not look like the software i used at school..

hang on, i think i used adobe fireworks at school.

not sure.
Fireworks is primarily a PNG editing software.
It's not really meant for designing web pages.
That's what Dreamweaver is for. ๐Ÿ˜Ž
Perhaps they had an older version of DW?
As DW often changes its layout in each CS.
 
ah lol ๐Ÿ˜› well it must of been DW then. ๐Ÿ˜›
 
Back
Top Bottom