forked from ginchoco/1Letter1Smile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirmation.html
57 lines (45 loc) · 2.38 KB
/
confirmation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--========== BOX ICONS ==========-->
<link href='https://cdn.jsdelivr.net/npm/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!--========== CSS ==========-->
<link rel="stylesheet" href="assets/css/styles.css">
<title>1Letter1Smile Mockup</title>
<!--========== SCROLL TOP ==========-->
<a href="#" class="scrolltop" id="scroll-top">
<i class='bx bx-chevron-up scrolltop__icon'></i>
</a>
</head>
<!--========== HEADER ==========-->
<header class="l-header" id="header">
<nav class="nav bd-container">
<a href="index.html" class="nav__logo"><img src="assets/img/logo.png" alt=""></a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item"><a href="letter.html" class="nav__link">Write a Letter</a></li>
<li class="nav__item"><a href="login.html" class="nav__link">Register/Login</a></li>
<li class="nav__item"><a href="about.html" class="nav__link">About</a></li>
<li class="nav__item"><a href="#contact" class="nav__link">More</a></li>
<li><i class='bx bx-moon change-theme' id="theme-button"></i></li>
</ul>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-menu'></i>
</div>
</nav>
</header>
<!--========== BODY ==========-->
<section class="about">
<img src="assets/img/logo.png" alt="" class="home__logo">
<span class="section-subtitle">Confirmation</span>
<h2 class="section-title">Letter sent!</h2>
<p class="paragraph" id="paragraph">Thank you for making someone smile today. You'll recieve a confirmation in the mail that we've recevied your letter. You're an official smile-maker</p>
</section>
<!--========== SCROLL REVEAL ==========-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--========== MAIN JS ==========-->
<script src="assets/js/main.js"></script>
</html>