-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (96 loc) · 5.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<title>Peace Mind</title>
<!-- Favicon Icon -->
<link rel="icon" href="images/favicon-32x32.png">
<!-- CSS Stylesheet -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<!-- Font Awesome -->
<script defer="" src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<!-- Google Fonts -->
<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=Caveat:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bilbo+Swash+Caps&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Grechen+Fuemen&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Merienda&display=swap" rel="stylesheet">
<!-- Bootstrap Scripts -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</head>
<body>
<!-- Navbar -->
<nav class="navbar sticky-top navbar-expand-lg">
<a href="#" class="navbar-brand">Peace Mind</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
Open
<!-- <span class="navbar-toggler-icon"></span> -->
</button>
<div class="collapse navbar-collapse" id="navbarToggleExternalContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- Welcome Section -->
<div class="welcome">
<h1>Welcome to Peace Mind</h1>
<button class="welcome-button"><a href="#about">Get Started</a></button>
</div>
<!-- Quote Container -->
<div class="quote-container" id="quote-container">
<!-- Quote -->
<div class="quote-text">
<span id="quote">Peace Begins With A Smile, So Keep Smiling... <i class="far fa-smile"></i></span>
</div>
<div>
<!-- Author
<div>
<span class="quote-author">Buddha</span>
</div>
Buttons
<div class="button-container">
<button class="twitter-button icon-button" id="twitter" title="Tweet This!">
<i class="fab fa-twitter"></i>
</button>
<button class="icon-button" id="new-quote">New Quote</button>
</div> -->
</div>
</div>
<!-- About Section -->
<div class="about" id="about">
<h1>About</h1>
<p>This is a place where you can find peace and your mind will be relaxed here because we'll provide you a platform to share your thoughts or problems with the whole world...</p>
<p>Yes you heard it right, this platform gives you an opportunity to share your problems, and also if you're interested in solving the problems of real-world then you can come here to find an idea</p>
<button class="about-button"><a href="problem.html" target="_blank">Share your Problems</a></button>
<button class="about-button"><a href="idea.html" target="_blank">Share your Ideas</a></button>
</div>
<!-- Contact Section -->
<div class="contact" id="contact">
<h1>Contact Us</h1>
<h3>If you love this project, then connect with me for more discussion...</h3>
<div class="form">
<input type="text" placeholder="Enter Your Full Name"><br>
<input type="text" placeholder="Enter Your Email"><br>
<textarea placeholder="Enter Your Message" spellcheck="false"></textarea><br>
<button type="submit" class="submit"><a href="">Submit</a></button>
</div>
</div>
<div class="footer">
<div class="icon">
<i class="fab fa-twitter fa-2x"></i>
<i class="fab fa-github fa-2x"></i>
<i class="fab fa-linkedin-in fa-2x"></i>
</div>
<h2>Made With Peace <i class="fas fa-hand-peace"></i></h2>
</div>
</body>
</html>