-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 3.09 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 3.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="../css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Candlegraph - Slogan Goes Here!</title>
</head>
<body>
<header>
<div id="nav-bar">
<ul>
<li><a class="logo" href="../index.html">Candlegraph</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Graphs</a>
<div class="dropdown-content">
<a href="../graphs/legacy-graphs.html">Legacy</a>
<a href="#">Modern</a>
</div>
</li>
<li><a href="../brands/index.html">Brands</a></li>
<li><a href="../about/index.html">About</a></li>
</ul>
<!-- <form target="_blank" action="/search">
<fieldset>
<label id="search"><input type="text" name="search" placeholder="Search candles"></label>
</fieldset>
</form> -->
</div>
</header>
<main>
<section id="welcome-section">
<h1>Welcome to Candlegraph!</h1>
<p>Hello, and welcome to Candlegraph! My name is Terry, and I love scented candles. They're a great way to turn your house into a warm and inviting home. However, not all scented candles are created equal, which is the idea behind this site. I can't tell you exactly when it happened, but somewhere along the way I started measuring how long certain candles would burn for, and how much value I was getting from these (sometimes expensive) candles. An Excel sheet was born, and out of that, a PowerPoint presentation and Toastmasters speech entitled <strong>Candle Burn Times: A Value Proposition</strong></p>
<p>The more people I shared my idea with, the more encouragement I got to go all in. A friend tore apart my initial 'methodology' and I revised and updated my measurements for 2022. In the summer I got even more serious and took a course in SQL, and now my candle readings live in databases. And as a final measure, this site is meant to link everything together.</p>
<p>To start, take a look at the <a href="../graphs/index.html">charts</a> that started it all. You can also look at the <a href="../brands/index.html">brands</a> that I like and that I've charted so far. Finally, please <a href="../about/index.html">fill out the survey</a> for any brands that you'd like to see.</p>
</section>
</main>
<footer>
<section id="contact">
<hr>
<ul>
<li><a href="mailto:terry@candlegraph.io"><i class="fa-solid fa-at"></i>Email</a></li>
<li><a href="https://github.com/terryology/candlegraph"><i class="fa-brands fa-github"></i>Github</a></li>
<li><a href="https://instagram.com/candlegraphatx"><i class="fa-brands fa-instagram"></i>Instagram</a></li>
<li><a href="https://twitter.com/candlegraph"><i class="fa-brands fa-twitter"></i>Twitter<a></li>
<li><a href="https://terryology.com"><i class="fa-solid fa-diagram-project"></i>Other Projects</a></li>
</ul>
</section>
</footer>
</body>
</html>