-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
68 lines (65 loc) · 2.95 KB
/
about.html
File metadata and controls
68 lines (65 loc) · 2.95 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
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./CSS/css_reset.css">
<link rel="stylesheet" href="./CSS/shared.css">
<link rel="stylesheet" href="./CSS/about.css">
<link rel="stylesheet" href="https://cdn.lineicons.com/3.0/lineicons.css">
<title>About</title>
</head>
<body>
<header id="header">
<section class="header-items" id="header-link">
<a href="/index.html"><i id="home-icon" class="lni lni-book"></i></a>
</section>
<section class="header-items" id="header-title">
<h3>HabiTrac</h3>
</section>
<nav class="header-items" id="nav">
<ul id="nav-list">
<li class="nav-items">
<a href="/index.html">Home</a>
</li>
<li class="nav-items">
<a href="/habiTracker.html">HabitTrack</a>
</li>
</ul>
</nav>
</header>
<main id="main">
<h2 id="main-heading">About Me</h2>
<section id="about-section">
<h3 id="about-name">Kellen Linse</h3>
<hr>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img id="self-photo" src="./IMAGES/self-photo.jpg" alt="photo of Kellen">
</div>
<div class="flip-card-back">
<img id="self-photo" src="./IMAGES/mya-photo.jpg" alt="photo of secret contributor">
</div>
</div>
</div>
<h4>(flip the card to see the secret contributor)</h4>
<article>
<p>I am interested in all things tech. My primary focus programming up to this point has been Embedded
Systems/Arduino/IoT/LED related projects. Mostly involving esp8266 and esp32
microcontrollers. My projects have evolved to the point where I am making my own custom WiFi
and Bluetooth enabled microcontrollers with built in accelerometers,
gyroscopes, IR receivers, and more. In addition to the microcontroller projects, I also work with
depth cameras like the
Microsoft Azure Kinect and programs like Touchdesigner making interactive art installation for
events and music festivals.
</p>
</article>
</section>
</main>
</body>
</html>