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

              
                <html>

   	<head>
    	<title>Owls.</title>
    	<link rel="stylesheet" type="text/css" href="owl-style-quiz.css">
   	</head>
   	
   	<body id="bg">
   	
		<h1>Owls</h1>
		<p>There are many different types of owls. Here are some different owls. For more information on owls, try going to <a href="http://wikipedia.org" target="_blank">Wikipedia</a>.</p>
	
		<div class="table-div>
		<table border="0" style="width:100%; text-align: center;">
			<tr>
				<td>
					<img scr="images/barn-owl.jpg" alt="Barn Owl" height="150" width="300"> 
					<h2>I'm a barn owl.</h2>
					<h3>I have asymmetrical ear openings</h3>
				</td>
				<td>
					<img src="images/long-eared-owl.jpg" alt="Long Eared Owl" height="150" width="300"> 
					<h2>I'm a Long-eared Owl.
					<h3>I hunt squirrels, bats, and chipmunks.</h3>
				</td>
				<td>
					<img src="images/snowy-owl.jpg" alt="Snowy Owl" height="150" width="300"> 
					<h2>I'm a Snowy Owl</h2>
					<h3>I am the heaviest owl in North America.</h3>
				<td>
			</tr>
			<tr>
				<td>
					<img src="images/spectacled-owl.jpg" alt="Spectacled Owl" height="150" width="300"> 
					<h2>I'm a Spectacled Owl.</h2>
					<h3>I look like I'm wearing glasses but I'm not.</h3>
				</td>
				<td>
					<img src="images/great-horned-owl.jpg" alt="Great Horned Owl" height="150" width="300"> 
					<h2>I'm a Great Horned Owl.</h2>
					<h3>My horns are just tufts of feathers.</h3>
				</td>
				<td>
					<img src="images/elf-owl" alt="Elf Owl" height="150" width="300"> 
					<h2>I'm a Elf Owl.</h2>
					<h3>Sometimes I nest inside of cacti.<h3>
				</td>
			</tr>
		
		</div>
	
		<span> class="exclamation">Owls are our friends!</span>
		<br>
		<span class="the-end">The End.</span>
		
	</body>
	
</html>


              
            
!

CSS

              
                h1 {
	font-size: 50px;
	font-family: Arial;
	color: #1adac5;
	padding: 5px;
	text-align: center;
	text-transform: uppercase;
}

p 
	font-size: 18px;
	font-family: Georgia;
	color: #1adac5;
	text-align: center;


a {
	color: #A529B3;
  
}

h2 {
	color: #B36E29;
	font-family: Arial;
	font-size: 20px;
	text-transform: uppercase;
	font-style: bold;
}
h3 {
	color: #1adac5
	font-size: 18px;
	font-style; italic;
	font-weight: 600;
}

bg {
	background-image: url("images/upfeathers.png");
}

.exclmtion {
	font-size: 80px;
	font-family: Arial;
	font-style: italic;
	padding-top: 20px;
	color: #1adac5;
	text-align: center;
	display: block;
	
}
the-end {
	font-size: 16px;
	font-family: Georgia;
	color: #B36E29;
	text-align: center;
	display: block;

.table-div {
	border-top: 6px dotted #1adac5;
	border-bottom: 6px dotted #1adac5;
	padding-top: 25px;
	padding-bottom: 25;
	margin-bottom: 25px;

}
              
            
!

JS

              
                
              
            
!
999px

Console