-
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
1 parent
1ed495c
commit d99b9f2
Showing
1 changed file
with
32 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,32 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>repl.co</title> | ||
<link href="style.css" rel="stylesheet" type="text/css" /> | ||
|
||
</head> | ||
|
||
<body> | ||
<script src="script.js"></script> | ||
<button id="sidenavshowbutton" onclick="navbarshow()"><img src="./circle-plus-solid.png"></button> | ||
<script src="script.js"></script> | ||
<div class="sidenav" id="sidenav"> | ||
<button id="sidenavhidebutton" onclick="navbarhide()"><img src="./circle-xmark-regular.png"></button> | ||
<a href="#index.html">home</a> | ||
<a href="#about.html">about</a> | ||
<a href="#documents.html">documents</a> | ||
|
||
</div> | ||
|
||
<p class="fade-in-element" id="header1">sample text</p> | ||
<p class="fade-in-element" style="margin-top: 600px;">more sample text</p> | ||
<img src="./sampleimg.jpg" class="middle"></img> | ||
<p class="fade-in-element" style="margin-top: 600px;">more sample text</p> | ||
<a onclick="gototop()" class="middletext" >you have reached the bottom of the page! click here to go back up.</a> | ||
</body> | ||
|
||
</html> | ||
|