-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
42 changed files
with
10,314 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
BSD 2-Clause License | ||
|
||
Copyright (c) 2020, Tuts+ | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# testtest | ||
# How to Create an Animated Page Transition with JavaScript |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Contact</title> | ||
<link rel="stylesheet" href="./modern-normalize.css"> | ||
<link rel="stylesheet" href="./style.scss"> | ||
</head> | ||
<body> | ||
<main data-router-wrapper> | ||
<section data-router-view="contact"> | ||
<h2>Contact</h2> | ||
<hr class="short"> | ||
|
||
<form action="#" method="GET"> | ||
<p><label for="name">Name</label><input type="text" name="name"></p> | ||
<p><label for="email">Email address</label><input type="email" name="email"></p> | ||
<p><label for="message">Message</label><textarea name="message" id="" cols="30" rows="10"></textarea></p> | ||
<p><button type="submit">Send message</button></p> | ||
</form> | ||
</section> | ||
</main> | ||
|
||
<script src="./scripts.js"></script> | ||
</body> | ||
</html> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Contact</title> | ||
<link rel="stylesheet" href="/modern-normalize.2bca49a3.css"> | ||
<link rel="stylesheet" href="/style.97fcb138.css"> | ||
</head> | ||
<body> | ||
<main data-router-wrapper=""> | ||
<section data-router-view="contact"> | ||
<h2>Contact</h2> | ||
<hr class="short"> | ||
|
||
<form action="#" method="GET"> | ||
<p><label for="name">Name</label><input type="text" name="name"></p> | ||
<p><label for="email">Email address</label><input type="email" name="email"></p> | ||
<p><label for="message">Message</label><textarea name="message" id="" cols="30" rows="10"></textarea></p> | ||
<p><button type="submit">Send message</button></p> | ||
</form> | ||
</section> | ||
</main> | ||
|
||
<script src="/scripts.b71a6038.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Homepage</title> | ||
<link rel="stylesheet" href="/modern-normalize.2bca49a3.css"> | ||
<link rel="stylesheet" href="/style.97fcb138.css"> | ||
<script src="/modern-normalize.2bca49a3.js"></script><script src="/style.97fcb138.js"></script></head> | ||
<body> | ||
<header> | ||
<a href="/index.html" class="logo"><img src="/logo.86ce68ea.svg" alt="Logo"></a> | ||
|
||
<nav> | ||
<ul> | ||
<li><a href="/index.html" class="active">Home</a></li> | ||
<li><a href="/portfolio.html">Portfolio</a></li> | ||
<li><a href="/contact.html">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<main data-router-wrapper=""> | ||
<section data-router-view="home"> | ||
<h1>Welcome to the portfolio of Adi Purdila</h1> | ||
<p>Check my portfolio samples below or <a href="/portfolio.html">open my full portfolio</a> to see what I've been working on.</p> | ||
|
||
<ul class="gallery"> | ||
<li> | ||
<a href="/portfolio.html"><img src="/image-1.756da506.png" alt="Portfolio image"></a> | ||
</li> | ||
<li> | ||
<a href="/portfolio.html"><img src="/image-2.5755b25c.png" alt="Portfolio image"></a> | ||
</li> | ||
</ul> | ||
</section> | ||
</main> | ||
|
||
<footer> | ||
<hr class="short"> | ||
<p>© 2020. All rights reserved.</p> | ||
</footer> | ||
|
||
<script src="/scripts.b71a6038.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.