473,785 Members | 3,032 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

I want Single Spaced Page

I am still struggling with simple html codes putting <p> xxyyzz
</p>

on each line. Instead the page shows DOUBLE SPACED. I dont want that!

how do I set it into Single Spaced page?

<h4> FREE MEMBERSHIP! <a href="http://login.yahoo.com/">Click on this; You
will go to Yahoo! Site</a> </h4>

<p> After you are registered, Visit your group on the web <a href=
"http://groups.yahoo.co m/Hgroup"> MESSAGE FORUM</a> </p><p>Watch my <a
href="ThreeHors esInStall.wmv"> Sat Video</a> movie.</p>

<p>Watch the <a href="TwoBirdsM eetInNYC.wmv">T WO BIRDS MEET IN NYC</a>
Movie.</p>

<p>Watch the <a href="LOST.wmv" >Lost In The Dark</a> Movie.</p>

<p>EMAIL: TO al******@comcas t.net for INFORMATION about
UPLOADING/DOWNLOADING</p>

<p> Files, Documents, Movies, Pictures and Programs to my site.</p>

<p>Sorenson VP100 (VIDEOPHONE): 908-232-3722 </p>

alan
Jul 20 '05 #1
5 13193
alan b wrote:
I am still struggling with simple html codes putting <p> xxyyzz
</p> on each line.
Well don't - use the paragraph tags to mark the beginning and end of
paragraphs. Let the browser decide when it needs a new line.
Instead the page shows DOUBLE SPACED.
No it doesn't, it shows a margin between each paragraph. This is A Good
Thing as it is highly readable.
how do I set it into Single Spaced page?
You can alter the margins between paragraphs (or any element) using the CSS
margin property. http://dorward.me.uk/www/css/#tutorials might be of use.
<h4> FREE MEMBERSHIP! <a href="http://login.yahoo.com/">Click on this; You
will go to Yahoo! Site</a> </h4>


That content really doesn't look like a level four heading to me.
--
David Dorward <http://blog.dorward.me .uk/> <http://dorward.me.uk/>
Jul 20 '05 #2
You are correct about <p>,/p> tags. I think I am using wrong tags.. I better
look for other tag that will let me to type line by line without space
between.
"David Dorward" <do*****@yahoo. com> wrote in message
news:c6******** ***********@new s.demon.co.uk.. .
alan b wrote:
I am still struggling with simple html codes putting <p> xxyyzz
</p> on each line.
Well don't - use the paragraph tags to mark the beginning and end of
paragraphs. Let the browser decide when it needs a new line.
Instead the page shows DOUBLE SPACED.


No it doesn't, it shows a margin between each paragraph. This is A Good
Thing as it is highly readable.
how do I set it into Single Spaced page?


You can alter the margins between paragraphs (or any element) using the

CSS margin property. http://dorward.me.uk/www/css/#tutorials might be of use.
<h4> FREE MEMBERSHIP! <a href="http://login.yahoo.com/">Click on this; You will go to Yahoo! Site</a> </h4>


That content really doesn't look like a level four heading to me.
--
David Dorward <http://blog.dorward.me .uk/> <http://dorward.me.uk/>

Jul 20 '05 #3
"alan b" <al******@comca st.net> wrote:
I am still struggling with simple html codes putting <p> xxyyzz
</p>

on each line.
Why? <p>...</p> marks up a paragraph, don't use it for anything else.
Instead the page shows DOUBLE SPACED. I dont want that!

how do I set it into Single Spaced page?


Do nothing. The browser will automatically wrap the text at the edge
of the window. Use paragraph markup to indicate whole paragraphs.

If you want paragraphs with no space in between them then use CSS to
remove the default margins:
p {margin: 0;}

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net > <http://steve.pugh.net/>
Jul 20 '05 #4
alan b wrote:
I am still struggling with simple html codes putting <p> xxyyzz
</p>

on each line. Instead the page shows DOUBLE SPACED. I dont want that!

how do I set it into Single Spaced page?
By marking up your content correctly. Learn what <p> stands for.
<h4> FREE MEMBERSHIP! <a href="http://login.yahoo.com/">Click on this; You
will go to Yahoo! Site</a> </h4>


Oh, and this doesn't look like a fourth-level heading.

--
Shawn K. Quinn
Jul 20 '05 #5

"alan b" <al******@comca st.net> wrote in message
news:ee******** ************@co mcast.com...
You are correct about <p>,/p> tags. I think I am using wrong tags.. I better look for other tag that will let me to type line by line without space
between.


Don't top-post.

You should use the correct tags (which, for paragraphs, are <p></p>), and
alter the spacing using CSS.

Jul 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1801
by: RT | last post by:
Hello; I'm trying to create a updates pages that I can move either to the previous record or the next record within a recordset without having to return to the repeating list of records after each up date. Assuming I have done the recordset correctly, which I have and the update records command as well here is the code I'm trying to use: <?php
3
6323
by: Ramachandran | last post by:
Hi, I am novice in ASP and am trying to build an online test that records user input one question at a time. So each question is a form by itself. I want to make a single ASP file that will validate all the form results and write it to a database. How can I know which form is calling the ASP file? Also, there may be multiple users accessing the quiz at the same time. Do I have to do anything special for such a case?
2
1302
by: Bruno Piovan | last post by:
Hi, I have 2 web apps running on the same server, one app is nested the other app. I want to have a single login page for both apps, how can I do that??? thanks Bruno
2
1423
by: batham | last post by:
Gurus, I have a situation, we have a web site running fine in ASP.Net, in that I have a single WEBFORM (test/test.aspx), when a user clicks this I want to have windows authentication for the same. I don't want windows authentication for the whole web site, just for that single web form, which is in folder "TEST", or let all the people in the current DOMAIN access that page. is that possible, if yes how is it achieved ?
2
1355
by: Tim_Mac | last post by:
hi, i am trying to find the best way of making a single .aspx page available to any web site on an IIS 6 server. without having multiple copies floating everywhere. previously i have used a hardlink for the file and junction point for the Bin directory, which works well. but not everyone is comfortable doing this, and it doesn't scale well for many sites if using a GUI tool such as NtfsLink.
1
1181
by: ss | last post by:
hi, can i have a 2 <form> </form> element in a Single aspx page? can anybody throw some light on it and explaining the what is the <form > </form> element doing in .aspx page? bye ss
2
1881
by: dan_williams | last post by:
I am working with an asp.net 1.1 web application. Do I have to rebuild the whole application and deploy the compiled DLL to my production server everytime I modify a single aspx page? Is there a way to not re-compile (or rebuild) the whole application every time a single page is modified? We do use CVS for our version control, but there's always a doubt that I have the latest code.
1
1269
by: BartlebyScrivener | last post by:
Is the main Python tutorial posted on single searchable page somewhere? As opposed to browsing the index and clicking NEXT etc. Thank you, rd
1
3153
by: Afshar | last post by:
Hi all friends, I have a big aspnet project including several several .aspx .ascx .resx. I publish this project everytime that i want to deploy it. I use full compile-no update options so I just bring some dlls to customers server. All aspx are converted to a plcaeholder. The problem is: Sometimes I modify just one page (aspx or cs) and wants just to deploy it. Is it possible to publish just that single page using aspnet_compiler.exe...
0
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10327
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10092
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8973
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7499
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6740
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5381
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4053
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2879
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.