Democratic Underground Latest Greatest Lobby Journals Search Options Help Login
Google

What is "flat HTML"?

Printer-friendly format Printer-friendly format
Printer-friendly format Email this thread to a friend
Printer-friendly format Bookmark this thread
This topic is archived.
Home » Discuss » Archives » General Discussion (1/22-2007 thru 12/14/2010) Donate to DU
 
Buzz Clik Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:04 PM
Original message
What is "flat HTML"?
(sorry for cross posting. I put this in the Software forum, but I'd like a fairly rapid response)

I've been asked to submit a text file in "flat HTML" for posting on a website. The file will be a very simple stream of text reporting some results. No graphics, no tables, nothing fancy. Is this the same html that is a save option in Microsoft Word?

If not, then how could I convert a simple ASCII file to "flat HTML"?
Printer Friendly | Permalink |  | Top
GreenPartyVoter Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:06 PM
Response to Original message
1. Maybe it's just plain ol' html?
Printer Friendly | Permalink |  | Top
 
tridim Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:09 PM
Response to Original message
2. Flat HTML
Edited on Tue Jul-17-07 12:10 PM by tridim
<html>
<head><title>Title</title></head>
<body>
ASCII Text...
</body>
</html>

At least that's what I'd assume they mean by "flat html". I'd actually just call it "html".
Printer Friendly | Permalink |  | Top
 
Subdivisions Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:11 PM
Response to Original message
3. Yep, just plain ol' HTML. No fancy stuff. Use the following:
Edited on Tue Jul-17-07 12:18 PM by Texas Explorer
Page:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> replace with your document's title </title>
</head>
<body>

replace with your document's content

</body>
</html>

Link: <a href=""></a>
Table: <table><tr><td>Table Element Here</td></tr></table>
Paragraph: <p>Text here</p>
Headlines: <h1>Header text</h1> (Large), <h2>Header text</h2> (Medium), <h3>Header text</h3> (small)
Image: <img src="location of image">
Unordered Bullet List:

<ul>
<li>Bullet Point</li>
<li>Bullet Point</li>
<li>Bullet Point</li>
<li>Bullet Point</li>
</ul>

Ordered (Numbered) Bullet List:

<ol>
<li>Bullet Point</li>
<li>Bullet Point</li>
<li>Bullet Point</li>
<li>Bullet Point</li>
</ol>

Reference: http://www.w3.org/MarkUp/Guide/


There's the basics :)
Printer Friendly | Permalink |  | Top
 
meegbear Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:12 PM
Response to Original message
4. Here's a site that could help ...
Printer Friendly | Permalink |  | Top
 
originalpckelly Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:13 PM
Response to Original message
5. HTML whose <body> didn't develop.
Edited on Tue Jul-17-07 12:16 PM by originalpckelly
:spank:
Printer Friendly | Permalink |  | Top
 
Clark2008 Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:19 PM
Response to Reply #5
9. You're making fun, but you're actually correct.
Flat HTML includes the code, but not the
"development."

In other words, it looks like what is posted above:
<html><body>
<p>abc abc</p>
<h1 class='header'>A</h1>
<p>A abc abc</p>
<h2 class='header'>B</h2>
<p>B abc abc</p>
<h3 class='header'>C</h3>
<p>Cabc abc</p>

But is set NOT to do the actions coded, but rather to show the
actions' codes.

:)

Printer Friendly | Permalink |  | Top
 
GreenPartyVoter Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:26 PM
Response to Reply #5
11. LOL
Printer Friendly | Permalink |  | Top
 
melody Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:44 PM
Response to Reply #5
15. LOL!
Thanks -- my laugh of the morning.
Printer Friendly | Permalink |  | Top
 
0007 Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:14 PM
Response to Original message
6. Much like a flat piece of meat.....it is what it is. "HTML" nt
Printer Friendly | Permalink |  | Top
 
slowry Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:15 PM
Response to Original message
7. Shit. Would that mean you couldn't use < blink > tags? Nooooooooo n/t
Edited on Tue Jul-17-07 12:15 PM by slowry
Printer Friendly | Permalink |  | Top
 
eShirl Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:18 PM
Response to Original message
8. it just means old-school barebones html
no dynamic content loading from a database or anything like that
Printer Friendly | Permalink |  | Top
 
blogslut Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:20 PM
Response to Original message
10. I wouldn't save it in Word
Word does weird thing to HTML code.

If I were you, I would

1) Open the text file in NOTEPAD

2) Add to the top of the document:

<html>
<head>
<title>PAGE TITLE</title>
</head>
<body>

3) Your document text goes under those tags. Remember to end
paragraphs with this tag <p>

4) Add this to the bottom:

</body>
</html>

5)  Save by choosing the ALL DOCUMENTS choice in the drop-down
menu. Then save the file as: yourdocumentname.html

Printer Friendly | Permalink |  | Top
 
alfredo Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:26 PM
Response to Reply #10
12. I use NVU, it gives you three views Tags, Source and
Preview. It's free and very easy to use. It produces clean code.

http://www.nvu.com/index.php

This app got its start as the Composer in Netscape.
Printer Friendly | Permalink |  | Top
 
blogslut Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:44 PM
Response to Reply #12
14. I use Arachnophilia 4.0
Although, since I put Kubuntu on this machine, I've discovered BlueFish. Both straight HTML editors. No WYSIWYG. Both free. :)
Printer Friendly | Permalink |  | Top
 
alfredo Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:52 PM
Response to Reply #14
17. I like bluefish too, but it is not for the newbie. If you are a casual
coder, NVU is perfect. I used the Mi editor in OSX if and when I hand code, but now I am liking Taco HTML editor.
Printer Friendly | Permalink |  | Top
 
blogslut Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:56 PM
Response to Reply #17
18. cool
Sounds like great software. I'll have to check it out some time. :)
Printer Friendly | Permalink |  | Top
 
alfredo Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 03:02 PM
Response to Reply #18
20. The technology has long passed me by. I knew a bit when it was
HTML 3. Now I either us use a WYSIWYG or I "borrow" code.
Printer Friendly | Permalink |  | Top
 
DS1 Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:30 PM
Response to Original message
13. it's the new Steve Forbes Internet
Printer Friendly | Permalink |  | Top
 
melody Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 12:46 PM
Response to Original message
16. Plain vanilla html
I'd use a text file in note pad. Flat HTML is anything that doesn't define browser display on the page. (I'm pretty sure that's right, but someone correct me if not)
Printer Friendly | Permalink |  | Top
 
Buzz Clik Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Jul-17-07 01:15 PM
Response to Original message
19. Thanks, folks! I'll digest all this, and make my way.
Printer Friendly | Permalink |  | Top
 
DU AdBot (1000+ posts) Click to send private message to this author Click to view 
this author's profile Click to add 
this author to your buddy list Click to add 
this author to your Ignore list Fri May 03rd 2024, 05:42 AM
Response to Original message
Advertisements [?]
 Top

Home » Discuss » Archives » General Discussion (1/22-2007 thru 12/14/2010) Donate to DU

Powered by DCForum+ Version 1.1 Copyright 1997-2002 DCScripts.com
Software has been extensively modified by the DU administrators


Important Notices: By participating on this discussion board, visitors agree to abide by the rules outlined on our Rules page. Messages posted on the Democratic Underground Discussion Forums are the opinions of the individuals who post them, and do not necessarily represent the opinions of Democratic Underground, LLC.

Home  |  Discussion Forums  |  Journals |  Store  |  Donate

About DU  |  Contact Us  |  Privacy Policy

Got a message for Democratic Underground? Click here to send us a message.

© 2001 - 2011 Democratic Underground, LLC