-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
96 lines (71 loc) · 3.57 KB
/
about.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PRODUCTIVITY EMPIRE | DS</title>
<link rel="stylesheet" href="Styles/styles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
</head>
<body>
<header>
<div class="topnav">
<a class = "empiretitle" href="">PRODUCTIVITY EMPIRE</a>
<a href="home.html">Home</a>
<a href="quotes.html">Quotes</a>
<a href="tips.html">Tips</a>
<a href="benefits.html">Benefits</a>
<a href="books.html">Books</a>
<a class="active" href="about.html">About</a>
<a href= #lightmode onclick = "myFunction()">Light Mode</a>
</div>
<!-- Load icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<br>
</header>
<div class = "sitecontent">
<div class="container">
<img id = "creatorms8" src = "https://media-exp1.licdn.com/dms/image/C4E03AQFGxjKOd6nGXQ/profile-displayphoto-shrink_200_200/0?e=1602720000&v=beta&t=qL6d_12jzgp_vsmOIN_ZRkzppGiOBkJbaVAzk_4TGWY" width = 300 height = 300 />
<div class="container__text">
<br>
<p> Dion Singh is a year 3 student enrolled in the Electrical and Computer Engineering degree programme at the University of the West Indies. He is a self-taught Front-End Developer. His skills include HTML, CSS, JavaScript and C++.</p>
</div>
</div>
</div class = "sitecontent">
<a href="#" id="toTopBtn" class="cd-top text-replace js-cd-top cd-top--is-visible cd-top--fade-out" data-abc="true"></a>
<script>
$(document).ready(function() {
$(window).scroll(function() {
if ($(this).scrollTop() > 20) {
$('#toTopBtn').fadeIn();
} else {
$('#toTopBtn').fadeOut();
}
});
$('#toTopBtn').click(function() {
$("html, body").animate({
scrollTop: 0
}, 1000);
return false;
});
});
</script>
<div id = #lightmode>
<script>
function myFunction() {
var element = document.body;
element.classList.toggle("light-mode");
}
</script>
</div>
<!-- Load font awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- The social media icon bar -->
<div class="icon-bar">
<a href="https://www.facebook.com/" class="facebook" target = "_blank"><i class="fa fa-facebook"></i></a>
<a href="https://twitter.com/" class="twitter" target = "_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.google.com/" class="google" target = "_blank"><i class="fa fa-google"></i></a>
<a href="https://www.linkedin.com/" class="linkedin" target = "_blank"><i class="fa fa-linkedin"></i></a>
<a href="https://www.youtube.com/" class="youtube" target = "_blank"><i class="fa fa-youtube"></i></a>
</div>
</body>
</html>