-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
118 lines (109 loc) · 5.1 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
107
108
109
110
111
112
113
114
115
116
117
118
<!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">
<title>Digitized Rhinoplasty</title>
<meta name="description"
content="Knight is a beautiful Bootstrap 4 template for product landing pages."/>
<!--Inter UI font-->
<link href="https://rsms.me/inter/inter-ui.css" rel="stylesheet">
<!--vendors styles-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css">
<!-- Bootstrap CSS / Color Scheme -->
<link rel="stylesheet" href="css/default.css" id="theme-color">
</head>
<body>
<!--navigation-->
<section class="smart-scroll">
<div class="container-fluid">
<nav class="navbar navbar-expand-md navbar-dark">
<a class="navbar-brand heading-black" href="index.html">
Digitized Rhinoplasty
</a>
<button class="navbar-toggler navbar-toggler-right border-0" type="button" data-toggle="collapse"
data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false"
aria-label="Toggle navigation">
<span data-feather="grid"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link page-scroll" href="#features"></a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#pricing"></a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#faq"></a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#blog"></a>
</li>
<li class="nav-item">
</li>
</ul>
</div>
</nav>
</div>
</section>
<!--hero header-->
<section class="py-7 py-md-0 bg-hero" id="home">
<div class="container">
<div class="row vh-md-100">
<div class="col-md-8 col-sm-10 col-12 mx-auto my-auto text-center">
<h1 class="heading-black text-capitalize">Digitally Perform Rhinoplasty</h1>
<p class="lead py-3">Sea otters hold hands when they sleep</p>
<form action="./3D-Config-Creator.html">
<button type="submit" class="btn btn-primary d-inline-flex flex-row align-items-center">
Create Configuration Files
<em class="ml-2" data-feather="arrow-right"></em>
</button>
</form>
<p></p>
<a class="nav-link page-scroll d-inline-flex flex-row align-items-center text-primary" href="./3D-Landmark-Benchmark.html">
<em data-feather="layout" width="18" height="18" class="mr-2"></em>
Error Checker
</a>
</div>
</div>
</div>
</section>
<!--scroll to top-->
<div class="scroll-top">
<i class="fa fa-angle-up" aria-hidden="true"></i>
</div>
<!-- theme switcher (FOR DEMO ONLY - REMOVE FROM PRODUCTION)-->
<div class="switcher-wrap">
<div class="switcher-trigger">
<span class="fa fa-gear"></span>
</div>
<div class="color-switcher">
<h6>Color Switcher</h6>
<ul class="mt-3 clearfix">
<li class="bg-teal active" data-color="default" title="Default Teal"></li>
<li class="bg-purple" data-color="purple" title="Purple"></li>
<li class="bg-blue" data-color="blue" title="Blue"></li>
<li class="bg-red" data-color="red" title="Red"></li>
<li class="bg-green" data-color="green" title="Green"></li>
<li class="bg-indigo" data-color="indigo" title="Indigo"></li>
<li class="bg-orange" data-color="orange" title="Orange"></li>
<li class="bg-cyan" data-color="cyan" title="Cyan"></li>
<li class="bg-yellow" data-color="yellow" title="Yellow"></li>
<li class="bg-pink" data-color="pink" title="Pink"></li>
</ul>
<p>Pick your favorite color</p>
</div>
</div>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/feather-icons/4.7.3/feather.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>