-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (39 loc) · 1.89 KB
/
index.html
File metadata and controls
54 lines (39 loc) · 1.89 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Brain Segmentation</title>
<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="images/favicon-150x150.png"/>
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- StyleSheet - CSS -->
<link rel="stylesheet" href="https://bootswatch.com//4/sandstone/bootstrap.css" media="screen">
<link rel="stylesheet" href="https://bootswatch.com//_assets/css/custom.min.css">
<!-- JavaScript -->
<script src="main.js"></script>
</head>
<body>
<div class="navbar navbar-expand-lg fixed-top navbar-dark bg-primary">
<div class="container">
<a href="#" class="navbar-brand">
<b>Brain Segmentation:</b> <i>Machine Learning Implementations</i>
</a>
</div>
</div>
<div class="container">
<div class="page-header" id="banner">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h1>Hello World</h1>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum faucibus euismod magna, eget porttitor tortor malesuada ac. In neque magna, tristique iaculis nisi a, iaculis ornare mauris. Praesent viverra faucibus tristique. Donec rutrum malesuada ex eget rhoncus. Maecenas id sapien in nisl tincidunt congue. Praesent quis egestas odio, sit amet faucibus urna. Sed dapibus mi id eros posuere lacinia. Phasellus eget arcu dui. Mauris egestas semper enim quis blandit. Nunc ut lobortis mauris. Phasellus semper dui vitae purus tincidunt fringilla.</p>
</div>
</div>
<div class="row">
<!-- Other content here -->
</div>
</div>
</div>
</body>
</html>