-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
72 lines (52 loc) · 3.25 KB
/
home.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
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>StepKnow.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" />
<link href="css/style.css" rel="stylesheet" />
</head>
<body id="home" class="text-center text-white bg-dark">
<nav class="navbar navbar-expand-md navbar-dark bg-dark mb-4">
<div class="container-fluid">
<a class="navbar-brand" href="./">StepKnow.com</a>
<!--<div class="col-md-3 text-end" id="topbar-signup" style="display: none">
<a type="button" class="btn btn-outline-primary me-2" href="./login.html">Login</a>
<a type="button" class="btn btn-primary" href="./signup.html">Sign-up</a>
</div>
<div class="dropdown text-end" id="topbar-user" style="display: none">
<a href="#" class="d-block link-dark text-decoration-none dropdown-toggle" id="dropdownUser1" data-bs-toggle="dropdown" aria-expanded="false">
<img src="https://avatars.dicebear.com/api/adventurer-neutral/mail%40ashallendesign.co.uk.svg" alt="mdo" width="32" height="32" class="rounded-circle">
https://eu.ui-avatars.com/api/?name=John+Doe&size=25
</a>
<ul class="dropdown-menu text-small dropdown-menu-end" aria-labelledby="dropdownUser1" style="">
<li><a class="dropdown-item" href="./">My profile page</a></li>
<li><a class="dropdown-item disabled" href="./">My chats</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="./search.html">Search a person</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item signout-button" href="#">Sign out</a></li>
</ul>
</div>-->
</div>
</nav>
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<main class="px-3">
<h1>Keep in touch from a web page of your without further needs.</h1>
<p class="lead">Get your free web page, get your web-link and text with anyone else without needs of any account registation.</p>
<p class="lead">
<a href="./signup.html" style="color: #333" class="btn btn-lg btn-secondary fw-bold border-white bg-white">Get your free page</a>
<br />
<a href="./search.html" style="color: #fff" class="btn btn-lg btn-outline-primary fw-bold mt-4 border-white">Search an user</a>
</p>
</main>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script type="module" src="js/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>