-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
118 lines (101 loc) · 3.43 KB
/
index.php
File metadata and controls
118 lines (101 loc) · 3.43 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
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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GeNetLabs</title>
<link rel="icon" href="img/logo/favicon.png" sizes="32x32" />
<link rel="icon" href="img/logo/favicon.png" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="img/logo/favicon.png" />
<meta name="description" content="GenetLabs focuses on covering topics related to microarray gene expression data and their analysis using computational methods">
<meta name="keywords" content="genet, gene expression, microarray">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<style type="text/css">
.detail-info{
border: 1px solid gray;
padding: 10px;
border-radius: 5px;
margin-bottom: 20px;
}
.quetion_icon_tag{
position: absolute;
top: 3px;
left: 2px;
}
.icon_background{
position: absolute;
top: -16px;
left: 2px;
width: 35px;
height: 38px;
background-color: white;
}
</style>
<body>
<!--Navigation bar-->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand">
<img src="img/logo/logo.png" alt="logo" style="width:115px; margin-top: -3px;">
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
</div>
</div>
</nav>
<!--/ Navigation bar-->
<!--Banner-->
<div class="bg-color" style="min-height: 300px;">
<div class="container">
<div class="row">
<div class="banner-text text-center">
<div class="text-border">
<h2 class="text-dec">You may be looking at these links.</h2>
</div>
</div>
</div>
</div>
</div>
<!--/ Banner-->
<section id="step_1" class="section-padding-index">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="icon_background">
<i class="fa fa-link fa-2x quetion_icon_tag" aria-hidden="true" style="color: #5fcf80"></i>
</div>
<div class="detail-info">
<hgroup>
<h3 class="det-txt-manual h3_faq">GeNet Tool</h3>
<p class="det-p-manual answer_faq"><a href="http://genet.genetlabs.com/" target="_blank">http://genet.genetlabs.com/</a></p>
</hgroup>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="icon_background">
<i class="fa fa-link fa-2x quetion_icon_tag" aria-hidden="true" style="color: #5fcf80"></i>
</div>
<div class="detail-info">
<hgroup>
<h3 class="det-txt-manual h3_faq">GeNet Tool Guide</h3>
<p class="det-p-manual answer_faq"><a href="http://guides.genetlabs.com/" target="_blank">http://guides.genetlabs.com/</a></p>
</hgroup>
</div>
</div>
</div>
</div>
</section>
<?php include 'footer.php';?>
</body>
</html>