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

Save Automatically?

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

              
                <!-- **** Cards in the Basic Grid Layout  ****-->
<main>	
	<div class="container">
		<div class="row">
			<div class="col s12">
				<h4>Events, classes, and Activities</h4>
			</div>
		</div>
			
		<div class="row">
			<h5>Summer Offerings</h5>
			
			<!-- Card #1 -->
			<div class="col s12 m6 l4">    	
				<div class="card">
					
					<div class="card-image">
						<img src="https://demo.atyourlibrary.com/material-design/images/cards/sm-sky.png">
						<span class="card-title">Star Party</span>
					</div>
					
					<div class="card-content">
						<p>Every Wednesday night, the library sponsors FREE public star parties on the roof of the observatory.</p>
					</div>
					
					<div class="card-action">
						<a href="#">Schedule</a>
					</div>
					
				</div>	
			</div>
		
			<!-- Card #2 -->
			<div class="col s12 m6 l4">
				<!-- Card #1 -->
				<div class="card">
					<div class="card-image">
						<img src="https://demo.atyourlibrary.com/material-design/images/cards/sm-vacation.png">
						<span class="card-title black-text">Vacation Reading</span>
					</div>
					<div class="card-content">
						<p>Why should the kids have all the fun? Join us for our second annual Adult Summer Reading program</p>
					</div>
					<div class="card-action">
						<a href="#">Register</a>
					</div>
				</div>	
			</div>
		
			<!-- Card #3 -->
			<div class="col s12 m6 l4">
				<!-- Card #1 -->
				<div class="card">
					<div class="card-image">
						<img src="https://demo.atyourlibrary.com/material-design/images/cards/sm-garden.png">
						<span class="card-title">Gardening</span>
					</div>
					<div class="card-content">
						<p>Green thumbs, books, and master gardeners spread  love of gardening. Everyone welcome!  </p>
					</div>
					<div class="card-action">
						<a href="#">Register</a>
					</div>
				</div>	
			</div>
		
			<h5>Cultural Offerings</h5>
			
			<!-- Card #4 -->
			<div class="col s12 m6 l4">
				<!-- Card #1 -->
				<div class="card">
					<div class="card-image">
						<img src="https://demo.atyourlibrary.com/material-design/images/cards/sm-art-class.png">
						<span class="card-title">Art Classes</span>
					</div>
					<div class="card-content">
						<p>Introducing the new art studio!  Explore your artistic side in classes offered by local artists</p>
					</div>
					<div class="card-action">
						<a href="#">Register</a>
					</div>
				</div>	
			</div>
			
			
			<!-- Card #5 -->
			<div class="col s12 m6 l4">
				<!-- Card #1 -->
				<div class="card">
					<div class="card-image">
						<img src="https://demo.atyourlibrary.com/material-design/images/cards/sm-music.png">
						<span class="card-title black-text">Music Appreciation</span>
					</div>
					<div class="card-content">
						<p>Concerts in the Park, workshops,  and explore our music collection.</p>
					</div>
					<div class="card-action">
						<a href="#">Summer Schedule</a>
					</div>
				</div>	
			</div>	
		
		
			<!-- Card #6 -->
			<div class="col s12 m6 l4">
				<!-- Card #1 -->
				<div class="card">
					<div class="card-image">
						<img src="https://demo.atyourlibrary.com/material-design/images/cards/sm-art-appreciation.png">
						<span class="card-title">Museum Tours</span>
					</div>
					<div class="card-content">
						<p>The Library is organizing Docent-led tours of the Have a Nice Day Art Museum.</p>
					</div>
					<div class="card-action">
						<a href="#">Schedule</a>
					</div>
				</div>	
			</div>	
		
		</div>
	</div>
</main>	

              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console