In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
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.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
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.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
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.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<template>
<main id="app">
<section class='intro'>
<div class='introDescription' data-aos="zoom-in"
data-aos-duration="1500"
data-aos-delay='500' >
A student's Guide
<br>
<p> to Learning from Home </p>
</div>
<img class='introImage' src='https://res.cloudinary.com/dsderm9xw/image/upload/v1622028117/3D%20Illustrations/3d-illustration4_usckww.png' alt='3d illustration of boy with a flag'/>
</section>
<section class='guide1'>
<img class='guide1Image' src='https://res.cloudinary.com/dsderm9xw/image/upload/v1622028085/3D%20Illustrations/3d-illustration2_ykuua3.png'
alt='3d illustration of boy sitting with legs crossed'
data-aos="slide-down"
data-aos-ease = 'ease'
data-aos-duration="1500"
data-aos-delay='500'/>
<div class='guide1Description'
data-aos="slide-up"
data-aos-ease = 'ease'
data-aos-duration="1500"
data-aos-delay='1000'>
<h1> Set up your <br> study space. </h1>
<div>
Find an area in your house where
<br>
you can sit comfortably and focus.
<br>
Make it separate to your relaxation space.
<br>
Ideally away from a TV screen
<br>
or other distractions.
</div>
</div>
</section>
<section class='guide2'>
<div class='guide2Description'
data-aos="slide-down"
data-aos-ease = 'ease'
data-aos-duration="1500"
data-aos-delay='1000'>
<h1> Plan your <br> day ahead. </h1>
<div>
If you have one,
<br>
follow the schedule provided by your school.
<br>
If you just have a list of things to study,
<br>
break it down into small tasks and
<br>
plan to do the hardest ones
<br>
when you have the most energy.
</div>
</div>
<img class='guide2Image' src='https://res.cloudinary.com/dsderm9xw/image/upload/v1622028057/3D%20Illustrations/3d-illustration1_j06j0a.png'
alt='3d illustration of boy with laptop sitting'
data-aos="slide-up"
data-aos-duration="1500"
data-aos-ease = 'ease'
data-aos-delay='1000'
/>
</section>
<footer>
Developed by FAE
</footer>
</main>
</template>
<!-- Use preprocessors via the lang attribute! e.g. <style lang="scss"> -->
<style>
*{
margin:0;
padding:0;
}
.intro{
display:flex;
background: #fff3e2;
justify-content: space-evenly;
padding-top:80px;
height: 500px;
}
.introDescription {
font-size:30px;
color:#632b2b;
padding-top:120px;
}
.introDescription p{
font-size:60px;
color:#632b2b;
font-weight: 900;
}
.guide1{
display:flex;
background: #ffd4a9;
justify-content: space-evenly;
padding-top:80px;
height: 500px;
overflow:hidden;
}
.guide1Description h1{
font-size:48px;
color:#632b2b;
padding: 120px 0px 20px 0px;
}
.guide1Description div{
background:#fff3e2 ;
color:#632b2b;
font-size:20px;
padding:10px;
border-radius:10px;
}
.guide2{
display:flex;
background: #fff3e2;
justify-content: space-evenly;
padding-top:80px;
height: 500px;
overflow:hidden;
}
.guide2Description h1{
font-size:48px;
color:#632b2b;
padding: 120px 0px 20px 0px;
}
.guide2Description div{
background:#ffd4a9 ;
color:#632b2b;
font-size:20px;
padding:10px;
border-radius:10px;
}
footer{
background: #ffd4a9;
color:#632b2b;
padding:10px;
text-align: right;
font-weight: 900;
}
/* responsiveness */
@media screen and (max-width: 500px){
.intro{
display:block;
padding-top:10px;
height:auto;
}
.introImage{
width:100%;
}
.introDescription {
padding: 30px 0px 0px 20px;
}
.guide1{
display:block;
padding-top:10px;
height:auto;
}
.guide1Image{
width:100%;
}
.guide1Description {
padding: 20px;
}
.guide1Description h1{
padding:30px 0px;
}
.guide2{
display:block;
padding-top:10px;
height:auto;
}
.guide2Image{
width:100%;
}
.guide2Description {
padding: 20px;
}
.guide2Description h1{
padding:30px 0px;
}
}
</style>
<script>
export default {
mounted () {
AOS.init()
}
}
</script>
Also see: Tab Triggers