Current Events > Need some html help

Topic List
Page List: 1
pinky0926
09/21/22 11:02:45 AM
#1:


Basically I'm using one of those crappy ass word-to-html converters. If you change the font of something, what it likes to do is add an individual font tag to every single <p> tag.

Surely there's just a way I can set the HTML globally for the page at the top? Not using css because reasons.

---
CE's Resident Scotsman.
http://i.imgur.com/ILz2ZbV.jpg
... Copied to Clipboard!
Sajo
09/21/22 12:18:43 PM
#2:


https://stackoverflow.com/questions/18705969/set-font-for-whole-page-with-only-html

You talking about something like this?

---
Co-host of The RPGShow: A bi-weekly RPG review podcast.
http://www.therpgshow.com
... Copied to Clipboard!
Hornezz
09/21/22 12:23:08 PM
#3:


pinky0926 posted...
Not using css because reasons.
Why exactly? This is what css is for. The <font> tag shouldn't be used at all imo.

---
In dentibus anticis frustum magnum spinaciae habes.
... Copied to Clipboard!
pinky0926
09/21/22 12:31:36 PM
#4:


Hornezz posted...
Why exactly? This is what css is for. The <font> tag shouldn't be used at all imo.

In this particular instance there's no easy way to link it to an external css file so I just wanted something inline of the <html>.


---
CE's Resident Scotsman.
http://i.imgur.com/ILz2ZbV.jpg
... Copied to Clipboard!
Hornezz
09/21/22 12:42:29 PM
#5:


CSS doesn't have to be an external file. You can add this between the <head> tags:

<style type="text/css">
body {
font-family: Verdana, sans-serif;
}
</style>

or add it inline to the body tag (does the same thing as above, just not as clean):

<body style="font-family: Verdana, sans-serif;">

---
In dentibus anticis frustum magnum spinaciae habes.
... Copied to Clipboard!
pinky0926
09/21/22 1:20:58 PM
#6:


Thanks!!

---
CE's Resident Scotsman.
http://i.imgur.com/ILz2ZbV.jpg
... Copied to Clipboard!
MedeaLysistrata
09/22/22 10:18:56 AM
#7:


css is great? point out everything you need to set up an array?

---
Please join the 100 Presidents community board and contribute to the project! Check back for updates!
https://gamefaqs.gamespot.com/boards/1568-100-presidents
... Copied to Clipboard!
Topic List
Page List: 1