Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>ridley page</title>
- <link rel="shortcut icon" href="favicon url">
- <style type="text/css">
- body {
- background:#000;
- background-image:url('url here');
- background-attachment:fixed;
- font-size:14px;
- font-family:times;
- color:#fff;
- }
- a {
- color:#000;
- background:red;
- text-decoration:underline;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- }
- a:hover {
- color:#000;
- background:#fff;
- -moz-transition-duration: 0.5s;
- -o-transition-duration: 0.5s;
- -webkit-transition-duration: 0.5s;
- transition-duration: 0.5s;
- }
- .container {
- width:1000px;
- margin:0 auto;
- overflow:hidden;
- text-align:center;
- }
- .banner {
- margin-right:auto;
- margin-left:auto;
- margin-bottom:25px;
- margin-top:60px;
- width:775px;
- height:auto;
- background-image:url('https://66.media.tumblr.com/e34173111bbc937c25af2e60b8d09d59/tumblr_inline_ptk4cmEBHD1tyarbw_1280.gif');
- background-repeat:repeat-x;
- }
- .bio {
- width:200px;
- height:300px;
- border:4px solid #fff;
- background:#820200;
- display:inline-block;
- position:relative;
- margin-left:25px;
- margin-right:25px;
- overflow:hidden;
- }
- .textbox {
- width:300px;
- height:150px;
- border:4px solid #fff;
- background:#820200;
- display:inline-block;
- position:relative;
- overflow:hidden;
- vertical-align:top;
- }
- .question {
- color:#000;
- text-transform:uppercase;
- font-weight:bold;
- text-shadow:0 0 3px #000;
- font-size:16px;
- display:inline-block;
- margin-left:15px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="banner">
- <img src="https://66.media.tumblr.com/e34173111bbc937c25af2e60b8d09d59/tumblr_inline_ptk4cmEBHD1tyarbw_1280.gif">
- </div>
- <div class="bio" style="text-align:left;">
- <p><div class="question">name:</div> name here</p>
- <p><div class="question">age:</div> age here</p>
- <p><div class="question">prns:</div> prns here</p>
- <p><div class="question">role:</div> role here</p>
- </div>
- <div class="textbox">
- <p>put your text here</p>
- </div>
- <div class="bio">
- <p><div class="question" style="margin-left:0;">interests</div></p>
- <ul style="text-align:left">
- <li>interest 1</li>
- <li>interest 2</li>
- <li>interest 3</li>
- <li>just keep adding li tags</li>
- </ul>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment