-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (51 loc) · 2.45 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
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="script.js" type="text/javascript"></script>
<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=Nunito&display=swap" rel="stylesheet">
</head>
<main>
<header id="header">
<img id="header-img" src="https://i.imgur.com/Mq6CNSu.png" alt="Indie Web Logo"
/>
<nav id="nav-bar">
<ul id="nav-bur">
<li><a class="nav-link" href="https://open.spotify.com/genre/0JQ5DAqbMKFKDIyhfS9NTT">Spotify Playlist</a></li>
<li><a class="nav-link" href="#youtube">YouTube Playlist</a></li>
<li><a class="nav-link" href="#de-stress">Just Chill</a></li>
</ul>
</nav>
</header>
<body id="container">
<section id="youtube">
<h1 id="youtube-label">YouTube Playlist by <a href="https://www.youtube.com/channel/UCSJ4gkVC6NrvII8umztf0Ow">Lofi Girl</a></h1>
<iframe id="video" width="560" height="315" src="https://www.youtube.com/embed/lTRiuFIWV54" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</section>
<section id="de-stress">
<h1>Chill Area</h1>
<img src="https://i.imgur.com/Huou7Gh.gif" alt="rythmic breathing gif"/>
<ul id="stress-list">
<li><a href="http://www.donothingfor2minutes.com/" alt="Do Nothing for Two Minutes Website">Do Nothing for 2 Minutes</a></li>
<li><a href="http://weavesilk.com/" alt="Do Nothing for Two Minutes Website">Silk</a></li>
</ul>
</section>
<h1> Suggestions / Just Want to Talk? </h1>
<form action="https://submit-form.com/HCj5Q58O">
<input type="hidden" name="_feedback.dark" value="true" />
<input type="hidden" name="_feedback.success.title" value="Thank you for your time. I look forward to speaking with you soon :)" />
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="What is your name?" required="" />
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="What is your email address?" required="" />
<label for="message">Message</label>
<textarea
id="message"
name="message"
placeholder="Tell me about what you're thinking :D"
required=""
></textarea>
<button type="submit">Send</button>
</form>
</body>
</main>