-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeliefs.html
55 lines (55 loc) · 2.57 KB
/
beliefs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="thoughts.css" rel=stylesheet type=text/css>
<title>What I believe</title>
<div id=nav class=sideNav>
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="Rabab_Rahman.html">Home</a>
<a href="About Me.html">About Me</a>
<a href="creations.html">Projects</a>
<a href="interests.html">My Interests</a>
<a href="beliefs.html">What I believe...</a></div>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
</head>
<body>
<div class= image>
<img src="Values.JPG" width= 200px; height=125px; style="align-self: center;"></div>
<h1>This is my system:</h1>
<div class=bounce-in-right>
<li>“Life is like riding a bicycle. To keep your balance, you must keep moving.”– Albert Einstein</li>
<li>Practice makes perfect</li>
<li>Mistakes are OK</li>
<li>Don't Take Yourself Too Seriously</li>
<li>Learn Every Day</li>
<li>Believe in Change</li>
<li>Invest in Ideas That Matter</li></div>
<div class= multimedia-container>
<div class="multimedia">
<h2>Follow Me!</h2>
<a href="https://codepen.io/Rababr1"><img src="iconfinder_56_939818.png" width="60px" height=60px></a>
<a href=https://www.twitch.tv/rababr1><img src="iconfinder_twitch_5017729.png"width="60px" height=60px></a>
<a href="https://repl.it/@RababRahman"><img src="repl.it button.png" width="60px" height=60px></a>
<a href="mailto:[email protected]"><img src="iconfinder_web_5_3924900.png" width="60px" height=50px></a></div></div>
<button onclick="topFunction()" id="myBtn" title="Go to top">Back to Top</button>
<script src="finalR.js"></script>
<script>
mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0;} // For Chrome, Firefox, IE and Opera
</script>
</body>
</html>