| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 | <!DOCTYPE html><html><head>	<meta charset="utf-8"> 	<title>Welcome To Laravel!</title>  	<link href="http://fonts.googleapis.com/css?family=Quattrocento&v1" rel="stylesheet" type="text/css" media="all" />	<link href="http://fonts.googleapis.com/css?family=Ubuntu&v1" rel="stylesheet" type="text/css" media="all" />	<link href="http://fonts.googleapis.com/css?family=Lobster+Two&v1" rel="stylesheet" type="text/css" media="all" />	<style type="text/css">		body {			background-color: #eee;			color: #6d6d6d;			font-family: 'Ubuntu';			font-size: 15px;		}		a {			color: #7089b3;			font-weight: bold;			text-decoration: none;		}		h1.laravel {			font-family: 'Lobster Two', Helvetica, serif;							font-size: 60px;			margin: 0 0 15px -10px;			padding: 0;			text-shadow: -1px 1px 1px #fff;		}		h2 {			font-family: 'Quattrocento', serif;			font-size: 30px;			margin: 30px 0 0 0;			padding: 0;			text-shadow: -1px 1px 1px #fff;		}		p {			margin: 10px 0 0 0;			line-height: 25px;		}		#wrapper {			background-color: #fff;			border-radius: 10px;			margin: 0 auto;			padding: 10px;			width: 80%;		}		#wrapper h2:first-of-type {			margin-top: 0;		}		#header {			margin: 0 auto;			margin-bottom: 15px;			margin-top: 20px;			width: 80%;		}	</style></head> <body>	<div id="header">		<h1 class="laravel">Laravel</h1>	</div>	<div id="wrapper">		<h2>Installation Complete!</h2>		<p>Ready to dig in? Start building your application in the <strong>application/routes.php</strong> file.</p>		<p>Need to learn more? Peruse our <a href="http://laravel.com/docs">wonderful documentation</a>.</p>	</div></body> </html>
 |