Created
May 26, 2017 17:43
-
-
Save calvincoxiii/803ddcd99e39c78aef16190df3ea2e24 to your computer and use it in GitHub Desktop.
HP Porkfolio Home
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> | |
| <div class="container"> | |
| <div id="page-wrap"> | |
| <nav> | |
| <a href="#"><img src=" https://f4.bcbits.com/img/0010119116_21.jpg"></a> | |
| <hr> | |
| <main id="me">Who<p></p>Calvinです。</p> | |
| </main><hr> | |
| <main id="me">What <p>Satyr - Bassist</p> | |
| <p>Aolyf - Composer</p> | |
| <p></p> | |
| </main><hr> | |
| <main id="me">Where<p>Atlanta, GA</p> | |
| </main><hr> | |
| <main>Contact | |
| <a href = "mailto:[email protected]">[email protected]</a></main> | |
| <p id="#edu"> </p> | |
| <!--<iframe width="30%" height="450" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/users/4710818&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"></iframe>--> | |
| </div> | |
| </body> | |
| </html> |
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
| $(document).ready(function(){ | |
| $('img').addClass('animated flipInX'); | |
| }); | |
| $(document).ready(function(){ | |
| $("a").hover(function(){ | |
| $(this).css("background-color", "white"); | |
| }); | |
| }); | |
| var myButton = document.querySelector('button'); | |
| var myHeading = document.querySelector('h1'); | |
| function setUserName() { | |
| var myName = prompt('Please enter your name.'); | |
| localStorage.setItem('name', myName); | |
| myHeading.textContent = 'Welcome, ' + myName + "."; | |
| if (!localStorage.getItem('name')) { | |
| setUserName(); | |
| } else { | |
| var storedName = localStorage.getItem('name'); | |
| myHeading.textContent = 'Welcome, ' + storedName; | |
| } | |
| } | |
| myButton.onclick = function() { | |
| setUserName(); | |
| } |
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
| <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> |
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
| @import url('https://fonts.googleapis.com/css?family=VT323'); | |
| body { | |
| background: url("http://hdwallpaperdaily.com/wp-content/uploads/2015/03/flower-design-abstract-wallpaper.png") no-repeat center center fixed; | |
| -webkit-background-size: cover; | |
| -moz-background-size: cover; | |
| -o-background-size: cover; | |
| background-size: cover; | |
| font-family: 'VT323', monospace; | |
| font-size: 3em; | |
| } | |
| #page-wrap { | |
| width: 50%; | |
| margin: 50px auto; | |
| padding: 20px; | |
| background: black; | |
| -moz-box-shadow: 0 0 20px black; | |
| -webkit-box-shadow: 0 0 20px black; | |
| box-shadow: 0 0 20px black; | |
| } | |
| nav { | |
| display: block; | |
| text-align: center; | |
| } | |
| img { | |
| border-radius: 50%; | |
| display: block; | |
| text-align: center; | |
| width: 30%; | |
| margin: auto; | |
| } | |
| html { | |
| font-family: 'VT323', monospace; | |
| } | |
| a:hover { | |
| text-decoration: none; | |
| } | |
| a { | |
| color: rgb(255, 34, 89); | |
| } | |
| main, | |
| p { | |
| color: pink; | |
| } | |
| #me{ | |
| text-align:center; | |
| } |
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
| <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" /> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment