> On Mar 16, 2018, at 23:37, Nori Muster <[email protected]> wrote: > > Thanks David - this may be a good alternative to learning CSS like everyone > else recommended, but maybe it's about time I learn CSS anyway.
What David sent is CSS. If you check the link I sent you'll see that there are a few basic things that you have to know to do most of what you want. And no need to remember. Anytime you need CSS, just check the reference page. > Oh computers - why do you challenge me all the time? > Thank you for the code, Ill try it. Does <style> go up there above or below > <body>? I'm guessing just below <body>. The <style> tag defines an "internal style sheet" and comes *inside* the <head> tag (which is above the <body> tag). https://www.w3schools.com/css/css_howto.asp Jean-Christophe > Nori > > On Friday, March 16, 2018 at 7:20:20 AM UTC-7, DavidWeinberger wrote: > To save a click: > > To put style info into the HTML doc itself, in the <head> section you'd add > something like this: > > <style> > body{ > font-family: Helvetica, sans-serif; > } > </style> > > (The san-serif provides an alternative for browsers that don't have the > Helvetica font installed, which will be approximately 0% of browsers, I > believe.) > > David W. > > > On Thursday, March 15, 2018 at 9:43:55 PM UTC-4, Jean-Christophe Helary wrote: > > >> On Mar 16, 2018, at 9:53, Nori Muster <[email protected] <>> wrote: >> >> I know how to set a typeface using <font face=“helvetica”> </font> >> But is there a way to change the whole document at the same time, like to >> put helvetica in the <body> line? > > Yes, it is a technology that's called CSS (cascading style sheets) and it's > been around for a very long time. > > You may want to check the W3schools tutorials to get up to speed: > https://www.w3schools.com/Css/ <https://www.w3schools.com/Css/> > > > Jean-Christophe Helary > ----------------------------------------------- > http://mac4translators.blogspot.com <http://mac4translators.blogspot.com/> > @brandelune > > > > -- > This is the BBEdit Talk public discussion group. If you have a > feature request or would like to report a problem, please email > "[email protected]" rather than posting to the group. > Follow @bbedit on Twitter: <http://www.twitter.com/bbedit > <http://www.twitter.com/bbedit>> > --- > You received this message because you are subscribed to the Google Groups > "BBEdit Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > To post to this group, send email to [email protected] > <mailto:[email protected]>. > Visit this group at https://groups.google.com/group/bbedit > <https://groups.google.com/group/bbedit>. Jean-Christophe Helary ----------------------------------------------- http://mac4translators.blogspot.com @brandelune -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem, please email "[email protected]" rather than posting to the group. Follow @bbedit on Twitter: <http://www.twitter.com/bbedit> --- You received this message because you are subscribed to the Google Groups "BBEdit Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/bbedit.
