-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·154 lines (123 loc) · 6.76 KB
/
index.html
File metadata and controls
executable file
·154 lines (123 loc) · 6.76 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
142
143
144
145
146
147
148
149
150
151
152
153
154
<!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">
<title>Benjamin Chase</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<!-- box icons -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<!-- custom css -->
<link href="css/style.css" rel="stylesheet">
<!-- Loads <model-viewer> for modern browsers: -->
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.js"></script>
<!-- Loads <model-viewer> for old browsers like IE11: -->
<script nomodule src="https://unpkg.com/@google/model-viewer/dist/model-viewer-legacy.js"></script>
<!-- The following libraries and polyfills are recommended to maximize browser support -->
<!-- NOTE: you must adjust the paths as appropriate for your project -->
<!-- REQUIRED: Web Components polyfill to support Edge and Firefox < 63 -->
<script src="https://unpkg.com/@webcomponents/webcomponentsjs@2.1.3/webcomponents-loader.js"></script>
<!-- OPTIONAL: Intersection Observer polyfill for better performance in Safari and IE11 -->
<script src="https://unpkg.com/intersection-observer@0.5.1/intersection-observer.js"></script>
<!-- OPTIONAL: Resize Observer polyfill improves resize behavior in non-Chrome browsers -->
<script src="https://unpkg.com/resize-observer-polyfill@1.5.1/dist/ResizeObserver.js"></script>
<!-- OPTIONAL: Fullscreen polyfill is required for experimental AR features in Canary -->
<!--<script src="https://unpkg.com/fullscreen-polyfill@1.0.2/dist/fullscreen.polyfill.js"></script>-->
<!-- OPTIONAL: Include prismatic.js for Magic Leap support -->
<!--<script src="https://unpkg.com/@magicleap/prismatic@0.18.2/prismatic.min.js"></script>-->
</head>
<body>
<!-- header design -->
<header class="header">
<a href="index.html" class="logo">Benjamin Chase</a>
<div class='bx bx-menu' id="menu-icon"></div>
<nav class="navbar">
<a href="index.html" class="active">Home</a>
<a href="#about">About</a>
<a href="engineering/pre-engineering.html">Pre-Engineering</a>
<a href="computer-science/computer-science.html">Computer Science</a>
<a href="other-projects/other-projects.html">Other Projects</a>
<a href="work-experience/work-experience.html">Work Experience</a>
</nav>
</header>
<!-- home section design -->
<section class="home" id="home">
<div class="home-content">
<h3>Hello, I'm</h3>
<h1><span>Benjamin Chase</span></h1>
<!-- Animated Typing -->
<h3>I'm passionate about
<!-- Element to contain animated typing -->
<span id="element"></span>
<!-- Load library from the CDN -->
<script src="https://unpkg.com/typed.js@2.0.15/dist/typed.umd.js"></script>
<!-- Setup and start animation! -->
<script>
var typed = new Typed('#element', {
startDelay: 1000,
strings: ['<i>Engineering</i>', '<i>Computer Science</i>', '<i>Chemistry</i>', '<i>Renewable Energies</i>'],
typeSpeed: 100,
backSpeed: 75,
cursorChar: "<i>|<i>",
loop: true,
});
</script>
</h3>
<h2>-> <i>Sustainable Engineering and Future Technologies</i> student at Hochschule Konstanz, Germany</h2>
<div class="social-media">
<a href="https://github.com/perspector" target="_blank" rel="noopener"><i class='bx bxl-github'></i></a>
<a href="mailto:benjaminlchase@protonmail.com" target="_blank" rel="noopener"><i class='bx bxl-gmail'></i></a>
</div>
<!-- <a href="#" class="btn">Download CV</a> -->
</div>
<div class="home-img">
<model-viewer id="modelblock" src="/assets/stl/VADER.glb" background-color=" #254441" min-camera-orbit="Infinity 0deg auto" max-camera-orbit="Infinity 180deg auto" min-field-of-view="0" max-field-of-view="180" interaction-prompt="none" bounds="tight" default-progress-bar="" ar-status="not-presenting" auto-rotate="1" rotation-per-second="300%" style="--display: none;" camera-controls="" camera-orbit="0deg 90deg" disable-zoom="">
</model-viewer>
</div>
</section>
<!-- about section design -->
<section class="about" id="about">
<!--<div class="about-img">
<img src="images/about.png" alt="">
</div> -->
<div class="about-content">
<h2 class="heading"><span>About Me</span></h2>
<h3>Greetings!</h3>
<p>
I am a university student at the Konstanz University of Applied Sciences in Konstanz, Germany
(Hochschule Konstanz Technik, Wirtschaft, und Gestaltung) studying Sustainable Engineering and Future Technologies.
I aim to progress renewable energies using innovative technologies.
</p>
<p>
Former student at Stephen Decatur High School
and Worcester Technical High School in Berlin, MD 21811, USA.
Engineering and computer science fascinate me alike,
and I enjoy using engineering and computer science
for ethical purposes to benefit people and the environment.
</p>
<!-- <a href="#" class="btn">Read More</a> -->
</div>
</section>
<!-- footer design -->
<footer class="footer">
<div class="footer-text">
<p>Copyright © 2023 - 2026 by Benjamin Chase</p>
<p>The code for this website, excluding dependencies, is licensed under the GNU GPLv3 license.</p>
<p>Code and license are available at: <a href="https://github.com/perspector/perspector.github.io">GitHub</a></p>
<p><a href="https://perspector.github.io/impressum.html">Impressum</a></p>
</div>
<div class="social-media">
<a href="https://github.com/perspector"><i class='bx bxl-github'></i></a>
<a href="mailto:benjaminlchase@protonmail.com"><i class='bx bxl-gmail'></i></a>
</div>
</footer>
<!-- scroll reveal -->
<script src="https://unpkg.com/scrollreveal"></script>
<!-- typed js -->
<!-- <script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>-->
<script src="https://unpkg.com/typed.js@2.0.15/dist/typed.umd.js"></script>
<!-- custom js -->
<script src="js/script.js"></script>
</body>
</html>