|
-
Feb 9th, 2006, 09:09 AM
#1
-
Feb 9th, 2006, 10:29 AM
#2
Re: Starting web designing
HTML + XHTML
Javascript
CSS
XMLHTTP
Photoshop/PaintShop Pro/Good imaging software
And good design practice.
-
Feb 9th, 2006, 10:29 AM
#3
Re: Starting web designing
I'd also, separate from the above post, say that ASP.NET is what you should be learning, as opposed to PHP, but it seems like you've already chosen your server side language.
-
Feb 9th, 2006, 12:46 PM
#4
Re: Starting web designing
For everything i've developed PHP has been good, although I have never used asp.net so couldnt go into the advantages etc.
Really if your HTML is poor you can use tools such as dreamweaver to get a grasp of the basics. But now sites are moving to using CSS etc.
Design skills are pretty essential obviously.
It completly depends on what site your designing to what tools you use!
-
Feb 9th, 2006, 01:21 PM
#5
Re: Starting web designing
Whatever you do, dont use FrontPage. 
Using ASP.NET is a good choice as its the newest, almost most popular I think, editor.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Feb 9th, 2006, 01:29 PM
#6
Re: Starting web designing
The problem with ASP.NET is finding web hosts (if you actually want to run the site in the real world, rather than just a test site you have on a development machine) Much easier finding cheap domain hosting services that have PHP/MySQL, as those are both very low-cost (Free) to obtain...
Last edited by gigemboy; Feb 9th, 2006 at 01:33 PM.
-
Feb 9th, 2006, 01:43 PM
#7
-
Feb 9th, 2006, 01:44 PM
#8
-
Feb 9th, 2006, 01:45 PM
#9
-
Feb 9th, 2006, 01:52 PM
#10
Re: Starting web designing
Cascading Style Sheets.
You can get the Web Developer version of VB.NET Express for free from MS downloads.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Feb 9th, 2006, 01:55 PM
#11
Re: Starting web designing
http://www.w3schools.com/
Learn HTML, then CSS. Keep all your HTML pure content, and apply the presentational CSS after you've got the HTML right. It will save you a lot of trouble in the long run.
IMO, PHP is far easier than ASP, and much more widely supported - it's generally a better platform altogether.
-
Feb 9th, 2006, 02:02 PM
#12
-
Feb 9th, 2006, 02:06 PM
#13
Re: Starting web designing
No probs.
CSS is a declarative language used to apply presentational properties to markup languages, such as HTML, XHTML, XML, etc.
Basically, if you have an element in your HTML code like a paragraph
HTML Code:
<p>This is a paragraph.</p>
you use a CSS selection rule to apply properties to that element, such as the following rule which will apply to all paragraphs to give them a grey background and navy coloured text.
Code:
p
{
background: gray;
color: navy;
}
Or for just one paragraph, you could use an ID
HTML Code:
<p>This is a paragraph.</p>
<p id="my-paragraph">Yay.</p>
CSS:
Code:
/* insert the CSS from before */
#my-paragraph
{
color: red;
}
in the second example you will end up with both paragraphs with a grey background, the first one will have navy text and the second will have red text.
Etc.
-
Feb 9th, 2006, 02:06 PM
#14
Re: Starting web designing
It does things like set a color scheme for a page of site. Like here at VBF we have blue hyperlinks and orange mouseovers and purple visited colors. You can customize schemes like that so each page has a scheme or a particular table or row has a special scheme etc. You can apply css to most of the other tags in html. There should be some sites for CSS tutorials too.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Feb 9th, 2006, 02:09 PM
#15
Re: Starting web designing
If you want check out my XHTML and CSS tutorial
http://www.forums.spiralmindsinc.com...?showtopic=365
I'm can always use suggestions for improvement to it
-
Feb 9th, 2006, 02:13 PM
#16
-
Feb 9th, 2006, 02:15 PM
#17
Re: Starting web designing
Oh yea and if/when you want to learn PHP then check out the introductory tutorial on php.net.
http://www.php.net/tut.php
I learnt from that with no prior knowledge of server-side scripting.
-
Feb 9th, 2006, 02:22 PM
#18
-
Feb 9th, 2006, 02:27 PM
#19
Re: Starting web designing
Check out this link for an example on what CSS does... click the "Switch Themes" list on the top right corner.
http://www.web-wise-wizard.com/site-...heme_Switching
That is merely substituting a different CSS sheet, and you can see how all the colors, background images, etc change. It seperates the information from the presentation. You can get a lot more in depth too. You can re-position html elements anywhere you want using CSS, so you can essentially have a totally different format, with, say, a navbar across the top with one sheet, or ... a navbar across the left side on another, all without changing a single line of HTML code. All the changes were made inside the CSS style sheeet.
-
Feb 9th, 2006, 02:28 PM
#20
-
Feb 9th, 2006, 02:29 PM
#21
Re: Starting web designing
I put it back
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|