-
Notifications
You must be signed in to change notification settings - Fork 1
/
father-sequence.html
80 lines (75 loc) · 3.85 KB
/
father-sequence.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
<!DOCTYPE html>
<html>
<head>
<title>Father's Sequence : Paternity Test - Baba Omo</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<script src="https://use.fontawesome.com/6e40765922.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="top-wrap">
<img src="img/dna.png" class="dna-img-2 top-right-img animated jello infinite" />
<div class="container">
<div class="row">
<div class="col-xs-12">
<a href="my-sequence.html" class="ripple arrow-wrap"><i class="material-icons"></i></a>
</div>
</div>
<div class="row">
<div class="col-xs-12 text-center">
<h2><small>Step</small> 3/<small>4</small></h2>
<h2>Father's DNA Pairs</h2>
</div>
</div>
</div>
</div>
<div class="wrap pat-form animated slideInUp">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="row box">
<div class="col-xs-5">
<div class="form-group">
<label class="control-label" for="inputNormal">Allele 1</label>
<input type="text" class="form-control" id="inputNormal" placeholder="" />
</div>
</div>
<div class="col-xs-5">
<div class="form-group">
<label class="control-label" for="inputNormal">Allele 2</label>
<input type="text" class="form-control" id="inputNormal" placeholder="" />
</div>
</div>
<div class="col-xs-2">
<button type="button" class="close remove-allel" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
</div>
<div class="row">
<div class="col-xs-12 text-center">
<button class="btn add-dna btn-default"><i class="material-icons"></i> Add DNA Pair</button>
</div>
</div>
<a href="result.html" class="btn btn-primary btn-block blue-btn" type="button">Proceed <i class="material-icons"></i></a>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>