This is Interesting: Free Magazines for Graphics designers and webmasters
Home > Archive > Dreamweaver > April 2004 > Creating simple html with <style>
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Creating simple html with <style>
|
|
|
| First I create a HTML document. Saved and works fine. Then I added <style>
where problem begins.
Please look at the asterisks *** where I am stalled.
I am aware that I am supposed to type <style> at that line,
but I am not supposed to type whole thing for body just below <style> like
body {background-color: #AEAEAEAE.
There should be a dialog to take care of the coding for me. but I aint find
that. How?
Alan
==================CODING=============================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Hello World</title>
</head>
<body>
<h1>Hello World!</h1>
*** I am supposed to create like this below
*** <style>
*** body { background-color: #AEAEAE; }
*** h1 { font-family: arial; font-style: italic; font-size: 1.2em; }
*** p { color: #FFAEAE; }
***.special { background-color: #BEBEBE; }
***</style>
But I am not able to find dialog for (Body, h1, p) INPUTS.
--
alan
| |
|
| Please nevermind the original posting.
I can just right click on - <style> and it will dropmenu NEW,
EDIT,,DELETE.. I then hit on NEW and TYPE IN Body and identify it as html
tag..then you set color, font and the like. I am sure I am making progress
on h1 .. Thank You.
Alan
"alanb" <alan4100@comcast.net> wrote in message
news:c6tkms$jsh$1@forums.macromedia.com...
> First I create a HTML document. Saved and works fine. Then I added
<style>
> where problem begins.
>
> Please look at the asterisks *** where I am stalled.
> I am aware that I am supposed to type <style> at that line,
> but I am not supposed to type whole thing for body just below <style>
like
> body {background-color: #AEAEAEAE.
>
> There should be a dialog to take care of the coding for me. but I aint
find
> that. How?
>
> Alan
> ==================CODING=============================
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd">
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
> <title>Hello World</title>
> </head>
>
> <body>
> <h1>Hello World!</h1>
> *** I am supposed to create like this below
> *** <style>
> *** body { background-color: #AEAEAE; }
> *** h1 { font-family: arial; font-style: italic; font-size: 1.2em; }
> *** p { color: #FFAEAE; }
> ***.special { background-color: #BEBEBE; }
> ***</style>
>
> But I am not able to find dialog for (Body, h1, p) INPUTS.
> --
>
> alan
>
>
| |
| Murray *TMM* 2004-04-30, 5:30 pm |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Hello World</title>
<style>
body { background-color: #AEAEAE; }
h1 { font-family: arial; font-style: italic; font-size: 1.2em; }
p { color: #FFAEAE; }
..special { background-color: #BEBEBE; }
</style>
</head>
You should use DW's CSS editor to do this.
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver MX
(If you *MUST* email me, don't LAUGH when you do so!)
==================
news://forums.macromedia.com/macromedia.dreamweaver - THE BEST WAY TO GET
ANSWERS
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
"alanb" <alan4100@comcast.net> wrote in message
news:c6tkms$jsh$1@forums.macromedia.com...
> First I create a HTML document. Saved and works fine. Then I added
<style>
> where problem begins.
>
> Please look at the asterisks *** where I am stalled.
> I am aware that I am supposed to type <style> at that line,
> but I am not supposed to type whole thing for body just below <style>
like
> body {background-color: #AEAEAEAE.
>
> There should be a dialog to take care of the coding for me. but I aint
find
> that. How?
>
> Alan
> ==================CODING=============================
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd">
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
> <title>Hello World</title>
> </head>
>
> <body>
> <h1>Hello World!</h1>
> *** I am supposed to create like this below
> *** <style>
> *** body { background-color: #AEAEAE; }
> *** h1 { font-family: arial; font-style: italic; font-size: 1.2em; }
> *** p { color: #FFAEAE; }
> ***.special { background-color: #BEBEBE; }
> ***</style>
>
> But I am not able to find dialog for (Body, h1, p) INPUTS.
> --
>
> alan
>
>
| |
|
| Can you tell me where to find CSS Editor within DWMX2004?
"Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
news:c6tm51$m2t$1@forums.macromedia.com...
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd">
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
> <title>Hello World</title>
> <style>
> body { background-color: #AEAEAE; }
> h1 { font-family: arial; font-style: italic; font-size: 1.2em; }
> p { color: #FFAEAE; }
> .special { background-color: #BEBEBE; }
> </style>
> </head>
>
> You should use DW's CSS editor to do this.
>
> --
> Murray --- ICQ 71997575
> Team Macromedia Volunteer for Dreamweaver MX
> (If you *MUST* email me, don't LAUGH when you do so!)
> ==================
> news://forums.macromedia.com/macromedia.dreamweaver - THE BEST WAY TO GET
> ANSWERS
> ==================
> http://www.dreamweavermx-templates.com - Template Triage!
> http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
> http://www.dwfaq.com - DW FAQs, Tutorials & Resources
> http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
> ==================
>
> "alanb" <alan4100@comcast.net> wrote in message
> news:c6tkms$jsh$1@forums.macromedia.com...
> <style>
> like
> find
>
>
| |
|
| IS Shift F11 CSS Editor?
"Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
news:c6tm51$m2t$1@forums.macromedia.com...
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd">
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
> <title>Hello World</title>
> <style>
> body { background-color: #AEAEAE; }
> h1 { font-family: arial; font-style: italic; font-size: 1.2em; }
> p { color: #FFAEAE; }
> .special { background-color: #BEBEBE; }
> </style>
> </head>
>
> You should use DW's CSS editor to do this.
>
> --
> Murray --- ICQ 71997575
> Team Macromedia Volunteer for Dreamweaver MX
> (If you *MUST* email me, don't LAUGH when you do so!)
> ==================
> news://forums.macromedia.com/macromedia.dreamweaver - THE BEST WAY TO GET
> ANSWERS
> ==================
> http://www.dreamweavermx-templates.com - Template Triage!
> http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
> http://www.dwfaq.com - DW FAQs, Tutorials & Resources
> http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
> ==================
>
> "alanb" <alan4100@comcast.net> wrote in message
> news:c6tkms$jsh$1@forums.macromedia.com...
> <style>
> like
> find
>
>
| |
|
|
|
| Thanks..I just purchased "The Missing Manual" today hoping I will be better
in two/three weeks.
By the way what is *TMM* ?
"Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
news:c6u3g1$cvo$1@forums.macromedia.com...
> Yes - that's how to get into it.
>
> --
> Murray --- ICQ 71997575
> Team Macromedia Volunteer for Dreamweaver MX
> (If you *MUST* email me, don't LAUGH when you do so!)
> ==================
> news://forums.macromedia.com/macromedia.dreamweaver - THE BEST WAY TO GET
> ANSWERS
> ==================
> http://www.dreamweavermx-templates.com - Template Triage!
> http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
> http://www.dwfaq.com - DW FAQs, Tutorials & Resources
> http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
> ==================
>
> "alanb" <alan4100@comcast.net> wrote in message
> news:c6u1jj$a3d$1@forums.macromedia.com...
charset=iso-8859-1">[color=darkred]
> GET
<style>[color=darkred]
aint[color=darkred]
> charset=iso-8859-1">
>
>
| |
|
|
|
| | Copyright 2003 - 2008 forum4designers.com Software forum Computer Hardware reviews |
|