This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
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
1 changed file
with
75 additions
and
0 deletions.
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,75 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Home</title> | ||
|
||
<script src="code.js"></script> | ||
|
||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<link rel="icon" type="image/x-icon" href="images/favicon.png"> | ||
<link rel="stylesheet" href="style.css"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Playpen+Sans"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia"> | ||
</head> | ||
<body onLoad="onLoad()"> | ||
|
||
<div class="page-select"> | ||
<div class="toggleTheme"> | ||
<button onClick="toggleTheme()"> | ||
<img src="images/moonIcon.png" alt="" id="sunIcon"> | ||
<img src="images/sunIcon.png" alt="" id="moonIcon"> | ||
</button> | ||
</div> | ||
<div class="half-select"> | ||
<form action="index.html"> | ||
<button type="submit" class="select-button fadeDown"> | ||
<div class="centered-text"> | ||
<p class="select-button-text">Home</p> | ||
</div> | ||
</button> | ||
</form><!-- | ||
--><form action="projects.html"> | ||
<button type="submit" class="select-button fadeDown" style="animation-delay: 0.5s;"> | ||
<div class="centered-text"> | ||
<p class="select-button-text">Projects</p> | ||
</div> | ||
</button> | ||
</form><!-- | ||
--><form action="news.html"> | ||
<button type="submit" class="select-button fadeDown" style="animation-delay: 1s;"> | ||
<div class="centered-text"> | ||
<p class="select-button-text">News</p> | ||
</div> | ||
</button> | ||
</form><!-- | ||
--><form action="stuff.html"> | ||
<button type="submit" class="select-button fadeDown" style="animation-delay: 1.5s;"> | ||
<div class="centered-text"> | ||
<p class="select-button-text">Stuff</p> | ||
</div> | ||
</button> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<div class="green-text"> | ||
<div class="fade-in-row"> | ||
<h1>Hi, this is page 404.</h1> | ||
</div> | ||
<div class="fade-in-row"> | ||
<h1>This means that you are in wrong place</h1> | ||
</div> | ||
<div class="fade-in-row"> | ||
<h1>If you think that you should not be here, please, report me how did you get on this page</h1> | ||
</div> | ||
<div class="fade-in-row"> | ||
<h1>You can change page in bar above</h1> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
</body> | ||
</html> |