Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="container">
	<div class="row" id="header">
		<div class="col-xs-12">
			<h2>My FCC Portfolio</h2>
    </div>
  </div>
  <div class="row" id="nav">
    <div class="col-xs-12">
					<ul>
						<li>
							<a href="#portfolio">&nbsp; &nbsp;   Portfolio</a>
						</li>
						<li>
							<a href="#contact">&nbsp; &nbsp;   Contact</a>
						</li>
						<li>
							<a href="#about">&nbsp; &nbsp;  About</a>
						</li>  
					</ul>
		</div>
	</div>
	<div class="row" id="about">
		<div class="col-xs-12">
			<h2>Patricia Grace</h2>
			<p>
			I'm <a href="https://freecodecamp.com/" target="new">learning to code</a>. I stumbled upon Free Code Camp while trying to find free
			resources to learn about programming. After a short time with the curriculum, I got hooked! I'm currently working on personal websites and sites for friends, family, and assisting local businesses. 
			</p>
		</div>	
	</div>	
	<span><h4>Current skills include:</h4></span>
	<div class="row">
	    <div class="col-xs-6">
			<div class="well" id="left-well">
			<ul>
				<li>HTML5</li>
				<li>CSS</li>
				<li>Bootstrap</li>
				<li>JavaScript</li>
			</ul>
			</div>
		</div>
		<div class="col-xs-6">
			<div class="well" id="right-well">
			<ul>
				<li>PHP</li>
				<li>Apache</li>
				<li>SQL</li>
				<li>Oracle/MySQL</li>
			</ul>
			</div>
		</div>
	 </div>	
	<div class="row" id="portfolio">
		<div class="col-md-4">
			<h2>Ordered Confusion</h2>
			<a href="https://orderedconfusion.com" title="Web Porfolio site"><img class="img-responsive" src="https://live.staticflickr.com/65535/48198105666_5ae7d57e7f_c.jpg" alt="staircase labyrinth"/></a>
			<p>
				I have a website titled Ordered Confusion where I'm working on my portfolio. I write about tech topics at <a href="https://punkspost.com">PunksPost.com</a>
        <p>Photo credit: <a href="https://visualhunt.co/a6/4890c4cc">davdenic</a> on <a href="https://visualhunt.com/re8/421e2211">VisualHunt</a> / <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/"> CC BY-NC-ND</a>
			</p>
		</div>
		<div class="col-md-4">
			<h2>Gospel Wine</h2>
			<a href="https://gospelwine.com" title="Christian articles and resources"><img class="img-responsive" src="https://gospelwine.files.wordpress.com/2015/01/red-wine-wine-wine-glass-lichtspiel-red.jpg?" alt="goblet with red wine" /></a>
			<p>
				The Gospel Wine website is a blog using the Wordpress hosting platform.
			</p>
			
		</div>
		<div class="col-md-4">
			<h2><em>PatriciaGrace.net</em></h2>
			<a href="https://patriciagrace.net" title="Personal Blog page"><img class="img-responsive" src="https://p1.pxfuel.com/preview/56/937/167/computer-laptop-notebook-pen.jpg" alt="laptop alongside notepad and pen and cup of coffee" /></a>
			<p>
        I make use of the awesome photos at <a href="https://unsplash.com/">Unsplash,</a><a href="https://isorepublic.com/"> ISORepublic</a> and Visual Hunt for my web projects. 
			</p>
		</div>
	</div>
	<div class="row" id="contact">
		<h2 class="text-center">Contact me</h2>
		<div class="col-xs-4">
			<button class="btn btn-block">
        <a href="https://twitter.com/_patricia_grace" target="new">Twitter
        </a>
      </button>
		</div>
		<div class="col-xs-4">
			<button class="btn btn-block">
        <a href="https://www.linkedin.com/in/patricia-manucy/" target="new">LinkedIn
        </a>
      </button>
		</div>
		<div class="col-xs-4">
			<button class="btn btn-block"><a href="https://www.facebook.com/groups/free.code.camp.jacksonville/" target="new">Facebook</a></button>
		</div>
    </div>
</div>

              
            
!

CSS

              
                body {
	background-color: pink;
}
h2 {
	color: purple;
	font-family: Lobster;
}
h4 {
	color: purple;
	font-family: Lobster;
	font-size: 25px;
}
#header {
  margin-top: 15px;
}
#nav {
 background-color: pink;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;

}

#nav ul li{
	float: right;
	font-family: Lobster;
	font-size: 25px;
  list-style: none;
 
}
#about {
	background-color: white;
	border: solid mediumvioletred 5px;
	border-radius: 10%;
	margin-bottom: 20px;
  margin-left: 5px;
  margin-right: 5px;
}
.well {
	border: solid mediumvioletred 5px;
	border-radius: 10%;
}
img {
	-moz-border-radius: 30px;
  -webkit-border-radius: 30px;
	border-radius: 30px;
}
p, span {
	font-weight: bold;
	line-height: 22px;
	text-align: center;
}
#contact {
	background-color: white;
	border: solid mediumvioletred 5px;
	border-radius: 10%;
	margin-bottom: 20px;
}
.btn {
	font-family: Lobster;
	margin-bottom: 15px;
}
p.smallprint {
	color: rgb(115, 115, 115);
	font-size: 15px;
}



              
            
!

JS

              
                
              
            
!
999px

Console