Problems with CSS / HTML!?

Grant

New member
Hello there,

I will try to make this short, I am designing a website and have a few problems. I made a title for the document and the spacing is too large. Here is the code....

<title>
Engineering Concepts
</title>

<head>
<p class="one"> The Elements <br>
of Genetic Engineering </p>
<style type="text/css">

Is there any way to move the text closer to the title. Thank you.
<html>
<body>

<title>
Engineering Concepts
</title>

<head>
<p class="one"> The Elements <br>
of Genetic Engineering </p>
<style type="text/css">

body {background-color:#000000;}

p.one {

color: #5CCCCC;
text-align: center;
font-variant: normal;
font-family: philosopher, serif;
font-weight: bold;
font-size: 350%;
line-height: none;

}

</style
</head>
<head>
<p class="two"> "A basic guide for the perplexed" </p>
<style type="text/css">

is there any way to get the "basic guide" part closer to the elements??????????????
<html>
<body>

<title>
Engineering Concepts
</title>

<head>
<p class="one"> The Elements <br>
of Genetic Engineering </p>
<style type="text/css">

body {background-color:#000000;}

p.one {

color: #5CCCCC;
text-align: center;
font-variant: normal;
font-family: philosopher, serif;
font-weight: bold;
font-size: 350%;
line-height: none;

}

</style
</head>
<head>
<p class="two"> "A basic guide for the perplexed" </p>
<style type="text/css">

is there any way to get the "basic guide" part closer to the elements??????????????
 
Back
Top