forked from jurica29/Nikola-Tesla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoinus.html
More file actions
141 lines (140 loc) · 4.7 KB
/
joinus.html
File metadata and controls
141 lines (140 loc) · 4.7 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="A website dedicated to Nikola Tesla" />
<meta
name="keywords"
content="Tesla, inventor, inventions, scientist, science"
/>
<meta name="author" content="Jurica Puljiz" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="shortcut icon" href="assets/images/favicon.png" />
<title>Nikola Tesla - A Man Who Changed the World</title>
</head>
<body>
<!-- Top page navigation section -->
<div class="topnav">
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="joinus.html">Quotes</a>
</li>
<li>
<a href="media.html">Media</a>
</li>
</ul>
</nav>
</div>
<header>
<h2 id="title">Nikola Tesla - A Man Who Changed the World</h2>
</header>
<!-- Image at the top centre of the page -->
<img src="assets/images/Tesla1.jpg" alt="Tesla portrait" class="center" />
<!-- Quote boxes are made by using blockquote tag and adequate CSS styling -->
<blockquote class="blockquote blockquote--bordered blockquote--quoted">
<p class="blockquote__text">
“If you want to find the secrets of the universe, think in terms of
energy, frequency and vibration.”
</p>
</blockquote>
<blockquote class="blockquote blockquote--bordered blockquote--quoted">
<p class="blockquote__text">
“I don't care that they stole my idea . . I care that they don't have
any of their own.”
</p>
</blockquote>
<blockquote class="blockquote blockquote--bordered blockquote--quoted">
<p class="blockquote__text">
“The day science begins to study non-physical phenomena, it will make
more progress in one decade than in all the previous centuries of its
existence.”
</p>
</blockquote>
<blockquote class="blockquote blockquote--bordered blockquote--quoted">
<p class="blockquote__text">
“The scientists of today think deeply instead of clearly. One must be
sane to think clearly, but one can think deeply and be quite insane.”
</p>
</blockquote>
<blockquote class="blockquote blockquote--bordered blockquote--quoted">
<p class="blockquote__text">
“The present is theirs; the future, for which I really worked, is mine.”
</p>
</blockquote>
<blockquote class="blockquote blockquote--bordered blockquote--quoted">
<p class="blockquote__text">
“Invention is the most important product of man's creative brain. The
ultimate purpose is the complete mastery of mind over the material
world, the harnessing of human nature to human needs.”
</p>
</blockquote>
<br />
<!-- Newsletter Signup form at the bottom of the page -->
<div class="wrapper">
<div id="subscribebox">
<i class="fa fa-envelope fa-4x"></i>
<h3>Our Newsletter</h3>
<form>
<input
type="text"
placeholder="Enter email"
required id="email-input"
aria-labelledby="email-input"
/>
<input type="submit"
value="Subscribe"
id="subscribe-button"
aria-labelledby="subscribe-button"
/>
</form>
</div>
</div>
<!-- Footer html code adapted from "Love Running" project-->
<footer>
<ul class="social-networks">
<li>
<a
href="https://facebook.com"
target="_blank"
rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"
>
<i class="fab fa-facebook"></i>
</a>
</li>
<li>
<a
href="https://youtube.com"
target="_blank"
rel="noopener"
aria-label="Visit our YouTube page (opens in a new tab)"
>
<i class="fab fa-youtube-square"></i>
</a>
</li>
<li>
<a
href="https://instagram.com"
target="_blank"
rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"
>
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
<p class="copyright">© Jurica Puljiz, 2021</p>
</footer>
<!-- font awesome script -->
<script
src="https://kit.fontawesome.com/c7dbda0798.js"
crossorigin="anonymous"
></script>
</body>
</html>