-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
110 lines (88 loc) · 3.83 KB
/
demo.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
107
108
109
110
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/compiler/bootstrap.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/compiler/style.css">
<title>FTNow - Demo</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="index.html"><img src="img/logo.png" alt="FTNow"></a>
<button class="navbar-toggler" type="button" data-toggler="collapse" data-target="#navMenu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navMenu">
<ul class="navbar-nav ml-auto">
<li class="nav-item ml-3">
<a style="color:#07B4EB !important" class="nav-link" href="demo.html">Demo</a>
</li>
<li class="nav-item ml-3">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item ml-3">
<a class="nav-link" href="aboutUs.html">About Us</a>
</li>
<li class="nav-item ml-3">
<a class="nav-link" href="privacy.html">Privacy</a>
</li>
</ul>
</div>
</div>
</nav>
<main>
<div class="centerStage container">
<div class="row">
<div class="col-12 text-center">
<h1><img src="img/demo.png"></h1>
</div>
</div>
<div class="row my-5">
<div class="col-6 right-demo">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="img/demo-done.mp4" allowfullscreen></iframe>
</div>
</div>
<div class="col-6 left-demo">
<h3 class="videoTitle">Applying different text formatting options</h3>
<p>In this video you will learn how to choose the
text formatting options and apply them to your text.</p>
</div>
</div>
<hr/>
<div class="row my-5">
<div class="col-6 right-demo">
<h3 class="videoTitle">Filtering sections of the text to be formated</h3>
<p>In this video you will learn how to select specific
words of your text to format.</p>
</div>
<div class="col-6 left-demo">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="img/demo-done.mp4" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<p>Copyright ©2020 Format Text Now - All rights reserved</p>
</div>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="node_modules/js/script.js"></script>
</body>
</html>