This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<header> | |
<h1>Real Coding Ninjas</h1> | |
</header> | |
<main> | |
<p>A sound clip of Zersiax's screen reader in action. | |
<audio id="meowClip" controls> | |
<source src="https://s3.amazonaws.com/freecodecamp/screen-reader.mp3" type="audio/mpeg" /> | |
</audio> | |
</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.balls { | |
border-radius: 50%; | |
position: fixed; | |
width: 50px; | |
height: 50px; | |
top: 60%; | |
animation-name: jump; | |
animation-duration: 2s; | |
animation-iteration-count: infinite; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.stars { | |
background-color: white; | |
height: 30px; | |
width: 30px; | |
border-radius: 50%; | |
animation-iteration-count: infinite; | |
} | |
.star-1 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.back { | |
position: fixed; | |
padding: 0; | |
margin: 0; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background: white; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
div { | |
height: 40px; | |
width: 70%; | |
background: black; | |
margin: 50px auto; | |
border-radius: 5px; | |
position: relative; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
div { | |
height: 40px; | |
width: 70%; | |
background: black; | |
margin: 50px auto; | |
border-radius: 5px; | |
} | |
#rect { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.heart { | |
position: absolute; | |
margin: auto; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
background-color: pink; | |
height: 50px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
div{ | |
border-radius: 20px; | |
width: 70%; | |
height: 400px; | |
margin: 50px auto; | |
background: linear-gradient(35deg, #CCFFFF, #FFCCCC); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
div{ | |
border-radius: 20px; | |
width: 70%; | |
height: 400px; | |
margin: 50px auto; | |
background: linear-gradient(35deg, #CCFFFF, #FFCCCC); | |
} |