En basit hali ile bu kodlar sana yardımcı olabilir. index.html style.css ve resimler aynı klasörde olmalı.
style.css
body {
 background-image: url('back.jpg'); 
 background-attachment: fixed;
 }
#logoust{
	height: 300px;
	width: auto;
	margin-right: auto;
	margin-left: 350px;
}

.logo {
	float: left;
	height: 200px;
	width: 303px;
	margin: 10px;
}
.logo1 {
	margin-left:500px;
}
index.html

<html>
<head>
<title>Giriş Sayfası</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="logoust">
<div class="logo" id="logo1"><img src="logo1.png" alt="logo1" /></div>
<div class="logo" id="logo2"><img src="logo2.png" alt="logo2" /></div>
</div>
<div class="logo1" id="logo3"><img src="logo3.png" alt="logo3" /></div>
</body>
<html>