There are books that cover that sort of thing. Check my signature. Also, there are plenty of sites that offer free tutorials on the basics of HTML: http://www.w3schools.com/html/default.asp
You can use CSS (Cascading Style Sheets) to do perform everything that you are referring to. CSS is the primary method of styling elements that appear within web pages and applications.
NGWENI
0 Points
1 Post
web development
Feb 13, 2013 01:20 PM|LINK
am stuck on part 3.
the problem is I don't know how to change a colour, fonts and also using hyperlinks.
I need help.
wavemaster
Participant
1291 Points
1128 Posts
Re: web development
Feb 13, 2013 01:39 PM|LINK
Which part 3 would that be?
Mikesdotnett...
All-Star
154927 Points
19867 Posts
Moderator
MVP
Re: web development
Feb 13, 2013 08:21 PM|LINK
There are books that cover that sort of thing. Check my signature. Also, there are plenty of sites that offer free tutorials on the basics of HTML: http://www.w3schools.com/html/default.asp
Beginning ASP.NET Web Pages with WebMatrix | My Site | Twitter
Rion William...
All-Star
27838 Points
4602 Posts
Re: web development
Feb 13, 2013 08:25 PM|LINK
I'm guessing that you are referring to this tutorial : Web Development : Part 3 Getting Some Style.
You can use CSS (Cascading Style Sheets) to do perform everything that you are referring to. CSS is the primary method of styling elements that appear within web pages and applications.
To change the font of a particular element, use the font-family property :
<p style='font-family: Segoe UI'> Everything in this paragraph tag will use the Segoe UI font. </p>To change the color of a specific element, use the color property :
<p style='color: red;'> Everything in this paragraph tag will be red. </p>If you wanted to remove the default underline within a hyperlink, you could use the text-decoration property :
The tutorial that you mentioned covers all of these topics. Were there any particular areas that you were having trouble understanding?