-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (57 loc) · 2.17 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Constantin</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="hero">
<h1 class="my-name">Monterey Drones</h1>
<h3 class="my-title">UAS photography</h3>
</div>
</header>
<div class="skills">
<h2>Skills</h2>
<ul>
<li><img src="resources/drone.svg" height="20" alt="drone icon"> Licensed UAS pilot (traditional and FPV)</li>
<li><img src="resources/moon-stars.svg" height="20" alt="night icon"> Low light conditions</li>
<li><img src="resources/palette.svg" height="20" alt="color icon"> Complex color grading</li>
</ul>
</div>
<div class="projects">
<h2>Projects</h2>
<div class="carousel">
<img src="resources/ncrock.jpeg" alt="bridge">
<img src="resources/cars.jpeg" alt="cars">
<img src="resources/dronie.jpeg" alt="dronie">
</div>
</div>
<div class="interests">
<h2>Interests</h2>
<div class="interest-container">
<div class="interest-card">
<h3>Programming</h3>
<p>When I was a kid, I got into designing videogames. I eventually progressed to Unreal Engine 5 and C++.
I think developing software is very satisfying.
</p>
</div>
<div class="interest-card">
<h3>3D printing</h3>
<p>This is one of my favorite hobbies and it's very helpful around the house. My wife and I have printed many
accessories for the kitchen and the garage.
</p>
</div>
</div>
</div>
<footer>
<div class="contact-me">
<p>Click below if you need professional air and ground photography.</p>
<button class="btn-contact"><img src="resources/envelope.svg" alt="email icon" height="20"> Contact me</button>
<p>© Constantin Lodzeischi, 2023</p>
</div>
</footer>
</body>
</html>