Skip to content

Instantly share code, notes, and snippets.

@thisilvafarias
Last active April 4, 2018 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thisilvafarias/570ffc470e4e2a65fdab21bda4bb947a to your computer and use it in GitHub Desktop.
Save thisilvafarias/570ffc470e4e2a65fdab21bda4bb947a to your computer and use it in GitHub Desktop.
myWebSite
<!DOCTYPE html>
<html>
<head>
<title>My Personal Webpage</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="nav"><a href="index.html">Home</a> | <a href="#">About Me</a> | <a href="#">Contact Me</a> | <a href="#">My Photos</a> | <a href="#">My Videos</a></div>
<div id="bg"></div>
</div>
<div id="main-content">
<div id="left-column">
<div id="logo">
Welcome to SpongeBob SquarePants' Webpage
</div>
<div class="box">
<h1>What You'll Find Here</h1>
<p>This is my space. Here are some of my interests: </p>
<ul style="margin-top:10px;">
<li>Bikini Bottom</li>
<li>Krusty Krab</li>
<li>Mr. Krabs</li>
<li>Patrick Star</li>
<li>Plankton</li>
</ul>
</div>
<h2>My hobbies</h2>
<p>
<img src="https://s14.postimg.org/3xjtiwx7l/gary.jpg
" width="139" height="150" style="margin: 0 10px 10px 0;float:left;" />
<em>"Play with Gary"</em> <br/>
<em>"Catching jellyfish, blowing bubbles, playing with his best friend Patrick, and unintentionally irritating mys neighbor Squidward."</em>
</p>
</div>
<div id="right-column">
<div id="main-image"><img src="https://s14.postimg.org/9kbl2s7td/spongebob.jpg
" width="160" height="188" /></div>
<div class="sidebar">
<h3>Blurb About Me</h3>
<p>I am SpongeBob, and I am from Bikini Bottom, I love swimming.</p>
<h3>Find Me Elsewhere</h3>
<div class="box">
<ul>
<li><a href="http://facebook.com" target="_blank">Facebook</a></li>
<li><a href="http://twitter.com" target="_blank">Twitter</a></li>
<li><a href="http://linkedin.com" target="_blank">LinkedIn</a></li>
<li><a href="http://tumblr.com" target="_blank">Tumblr</a></li>
<li><a href="http://pinterest.com" target="_blank">Pinterest </a></li>
</ul>
</div>
</div>
</div>
</div>
<div id="footer">
Copyright &copy; 2012 Michael Scott. All rights reserved.<br/>
Layout adapted from <a href="http://www.web-designers-directory.org/" target="_blank">Web Designers' Directory</a>.
</div>
</div>
</body>
</html>
/* Layout */
body {
font:normal 12px/1.6em Arial, Helvetica, sans-serif;
color:#2a3845;
margin:0;
padding:0;
background:#FFFFFF;
}
p {
margin:0;
padding:0;
}
#wrapper {
margin:0 auto;
width:632px;
border-left:1px solid #f0e9eb;
border-right:1px solid #f0e9eb;
}
#header {
margin:0 1px;
}
#bg {
height:36px;
background:url('http://img840.imageshack.us/img840/9886/87926428.gif') repeat-x;
}
#main-content {
margin:0 auto;
}
#main-image {
text-align:center;
}
#left-column {
width:300px;
padding:0 30px 30px;
float:left;
}
#right-column {
width:270px;
float:right;
}
.sidebar {
width:218px;
margin:0 auto;
padding:10px 25px;
background:url('http://img404.imageshack.us/img404/3092/shadowh.jpg') no-repeat top;
}
#footer {
background:#f7f7f7;
border-top:1px solid #f0e9eb;
padding:10px 15px;
clear:both;
}
/* Global Styling */
a:visited, a:link {
color:#a43b55;
text-decoration:underline;
background:none;
}
a:hover {
color:#a43b55;
text-decoration:none;
background:none;
}
h1 {
color:#7a2e40;
margin:0 0 10px;
padding-bottom:10px;
font:normal 17px Georgia, serif;
border-bottom:1px solid #efece7;
}
h2 {
color:#7a2e40;
margin:20px 0 10px;
padding-bottom:10px;
font:normal 17px Georgia, serif;
border-bottom:1px solid #efece7;
}
h3 {
color:#7a2e40;
margin:10px 0;
padding-bottom:10px;
font:bold 14px Arial, Helvetica, sans-serif;
border-bottom:1px solid #efece7;
}
ul {
padding:0;
margin:0 0 0 17px;
list-style:square url('http://img525.imageshack.us/img525/1890/bulletr.gif');
}
.box {
background:#f7f7f7;
border:1px solid #f0e9eb;
padding:15px;
}
#nav {
background:#06a;
padding:10px 20px;
text-align:right;
color:#f6dde3;
}
#nav a {
margin: 0 10px;
}
#nav a:visited, #nav a:link {
text-decoration:none;
color:#f6dde3;
}
#nav a:hover {
text-decoration:underline;
color:#f6dde3;
}
#logo {
margin-bottom:20px;
font:normal 18px Georgia, serif;
color:#fa7393;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment