-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (61 loc) · 3.02 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
62
63
<!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 href="index-styles.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap" rel="stylesheet">
<title>MusDev</title>
</head>
<body>
<section class="letters-fly">
<img src="assets/Printable-Letter-W.png" alt="W" id="letter-w">
<img src="assets/Printable-Letter-E.png" alt="E" id="letter-e">
<img src="assets/Printable-Letter-L.png" alt="L" id="letter-l">
<img src="assets/Printable-Letter-C.png" alt="C" id="letter-c">
<img src="assets/Printable-Letter-O.png" alt="O" id="letter-o">
<img src="assets/Printable-Letter-M.png" alt="M" id="letter-m">
<img src="assets/Printable-Letter-E.png" alt="E" id="second-letter-e">
</section>
<!--Logo and contact-->
<header class="sticky-nav">
<figure>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ&ab_channel=RickAstley" target="_blank" ><img src="assets/MusDev-logo.png"></a>
</figure>
<nav class="contact-nav">
<ul >
<li><a href="#footer">Contact</a></li>
</ul>
</nav>
</header>
<!--Choose your character
Teki music -hover
Teo dev -hover -->
<main>
<section class="characters">
<div class="container">
<a href="./teki-music.html"> <img src="assets/teki-music-picture.png" alt="violin-player-in-the-mountains" ></a>
<p class="text" id="teki-music">Teki <br> music</p>
</div>
<div class="container">
<a href="./teo-dev.html"> <img src="assets/teo-dev-picture.png" alt="developer" href="#"></a>
<p class="text" id="teki-dev">Teo <br> dev</p>
</div>
</section>
</main>
<!--Let's work together!
contact list : github, twitter, email, freeCodeCamp-->
<footer id="footer">
<p class="footer-text">Let's work together!</p>
<section class="footer-container">
<button class="button" style="font-size:24px"><a href="https://github.com/Teoaks" target="_blank">Github <i class="fa fa-github"></i></a></button>
<button class="button" style="font-size:24px"><a href="https://twitter.com/IkanovicTeodor" target="_blank">Twitter <i class="fa fa-twitter"></i></a></button>
<button class="button" style="font-size:24px"><a href="https://www.freecodecamp.org/fccbaf2e501-5da3-42f4-9e20-755b01e4f4f8" target="_blank">FreeCodeCamp <i class="fa fa-free-code-camp"></i></a>
<button class="button" style="font-size:24px"><a href="mailto: [email protected]" target="_blank">Email <i class="fa fa-envelope"></i></a>
</section>
</footer>
<script src="index.js"></script>
</body>
</html>