I'm very new to cs and html, trying to set up a simple page for my photography and im almost there.
I just cant seem to insert a line break in my code properly????
I want to insert a line break after every 5th thumbnail and have the images sit in the centre of the page.
i'll include my css and html and hope someone will explain where im going wrong.
CSS :
Body {
font: medium "Lucida Grande";
opacity: 1;
}
#images {
float: right;
background-image: none;
margin: 10px;
opacity: 1;
background-color: white;
}
#new {
background-position: 0;
text-align: center;
color: black;
}
html:
<html>
<head>
<title>Kevin Rowlands<p style="text-align: center;">Kevin Rowlands ~ Photography</p>
</title>
<link rel="stylesheet " href="Begining .css" type="text/css" />
</head>
<body>
<div id="new"><img src="/Users/kevinrowlands/Desktop/site /Images/title.jpg"><div >
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
</body>
</html>
I just cant seem to insert a line break in my code properly????
I want to insert a line break after every 5th thumbnail and have the images sit in the centre of the page.
i'll include my css and html and hope someone will explain where im going wrong.
CSS :
Body {
font: medium "Lucida Grande";
opacity: 1;
}
#images {
float: right;
background-image: none;
margin: 10px;
opacity: 1;
background-color: white;
}
#new {
background-position: 0;
text-align: center;
color: black;
}
html:
<html>
<head>
<title>Kevin Rowlands<p style="text-align: center;">Kevin Rowlands ~ Photography</p>
</title>
<link rel="stylesheet " href="Begining .css" type="text/css" />
</head>
<body>
<div id="new"><img src="/Users/kevinrowlands/Desktop/site /Images/title.jpg"><div >
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
<div id="images"><im g src="/Users/kevinrowlands/Desktop/site /Images/new2.jpg"></div>
</body>
</html>
Comment