-
Notifications
You must be signed in to change notification settings - Fork 0
/
software-development.html
80 lines (73 loc) · 3.33 KB
/
software-development.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Software Development</title>
<link rel="icon" href="./images/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer">
</head>
<body>
<header>
<nav aria-label="Main navigation">
<ul class="navbar">
<div class="mode-button" id="mode-button">
<i class="fa-solid fa-moon icon" id="mode-icon"></i>
</div>
<div class="home-container">
<li class="home-button">
<a href="index.html">Home</a>
</li>
</div>
<input type="checkbox" id="check">
<label for="check" class="open-menu"><i class="fas fa-bars"></i></label>
<span class="menu">
<label for="check" class="close-menu"><i class="fas fa-times"></i></label>
<li><a href="music.html">Music</a></li>
<li><a href="photography.html">Photography</a></li>
<li><a href="3d-art-printing.html">3D Art & Printing</a></li>
<li><a href="software-development.html">Software Development</a></li>
</span>
</ul>
</nav>
</header>
<main>
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-header">Topias Romppanen</h1>
<p>
<a href="software-development.html" class="hover-link" id="developer">Software Developer</a>,
<a href="3d-art-printing.html" class="hover-link" id="artist">3D Artist</a>,
<a href="photography.html" class="hover-link" id="photographer">Photographer</a>,
<a href="music.html" class="hover-link" id="musician">Musician</a>
</p>
<a href="contact.html">
<button class="cta-button">Contact me</button>
</a>
</div>
</div>
<div class="edge-blur">
<img alt="Edgeblur" class="edgeblur" id="edge-blur">
</div>
<section class="page-content">
<h1>A lot of important information and such here.</h1>
<p>More important information about important things.</p>
<p>Very informative important information here later.</p>
</section>
<section class="page-content">
<p>A lot of important information and such here.</p>
<p>More important information about important things.</p>
<p>Very informative important information here later.</p>
</section>
<section class="page-content">
<h1>Test of big header here</h1>
<p>Lorem ipsum something information.</p>
</section>
</main>
<footer>
<p>© <span id="year"></span> Topias Romppanen. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>