-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload_journal.html
145 lines (126 loc) · 4.2 KB
/
upload_journal.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE HTML>
<html>
<head>
<title>Hamdard Journal of Pharmacy</title>
<link href="assets/css/bootstrap.css" rel="stylesheet" type="text/css" media="all">
<link href="assets/css/style.css" rel="stylesheet" type="text/css" media="all" />
<link rel="shortcut icon" type="image/x-icon"
href="http://hakim-said.com.pk/wp-content/uploads/2020/03/hakim-1.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Graphic Responsive web template, Bootstrap Web Templates, Flat Web Templates, Andriod Compatible web template,
Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyErricsson, Motorola web design" />
<script
type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/css/flexslider.css" type="text/css" media="screen" />
<script src="assets/js/jquery.min.js"></script>
<script defer src="assets/js/jquery.flexslider.js"></script>
<script>
$(document).ready(function () {
size_li = $("#myList li").size();
x = 3;
$('#myList li:lt(' + x + ')').show();
$('#loadMore').click(function () {
x = (x + 1 <= size_li) ? x + 1 : size_li;
$('#myList li:lt(' + x + ')').show();
});
$('#showLess').click(function () {
x = (x - 1 < 0) ? 1 : x - 1;
$('#myList li').not(':lt(' + x + ')').hide();
});
});
</script>
</head>
<body>
<!-- header -->
<div class="banner">
<div class="container">
<div class="header">
<div class="logo">
<a><img src="assets/images/HJP_logo.png" class="img-responsive" alt="/"></a>
</div>
<div class="header-right">
<ul>
<li><a style="color:#fff">Logout</a></li>
<li><a style="color:#fff">Signin</a></li>
<!-- <li style="color:#fff">|</li>
<li><a style="color:#fff" href="#">SignUp</a></li> -->
<!-- <li>
<div class="search2">
<form>
<input type="text" value="Search.." onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Search..';}">
<input type="submit" value="">
</form>
</div></li> -->
<div class="clearfix"></div>
</ul>
</div>
<div class="clearfix"> </div>
</div>
<div class="head-nav">
<span class="menu"> </span>
<ul class="cl-effect-15">
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="editorial_board.html">Editorial & Advisory Board</a></li>
<li><a href="authors.html">Authors Instruction</a></li>
<li><a href="ethics.html">Ethics</a></li>
<li><a href="archives.html">Archives</a></li>
<li><a href="contact.html">Contact</a></li>
<div class="clearfix"> </div>
</ul>
</div>
<!-- script-for-nav -->
<script>
$("span.menu").click(function () {
$(".head-nav ul").slideToggle(300, function () {
// Animation complete.
});
});
</script>
<!-- script-for-nav -->
</div>
</div>
<!-- header -->
<!-- content -->
<div class="content">
<div class="container">
<div class="l_g">
<div class="col-md-10">
<legend>Submit Manuscript</legend>
<div class="col-md-6">
<div class="form-group">
<label for="exampleInputEmail1">Title</label>
</div>
<div class="form-group">
<label for="exampleInputEmail1">Description</label>
</div>
<div class="form-group">
<label for="exampleInputEmail1">Upload Image</label>
</div>
</form>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
<!-- <div id="loadMore">Load more</div>
<div id="showLess">Show less</div> -->
</div>
</div>
<br><br><br>
<!-- content -->
<!-- footer -->
<div class="footer">
<div class="container">
<div class="col-md-6 copy">
<h6 style="color:#fff">Copyright © 2021 Hamdard Journal of Pharmacy</h6>
<div class="clearfix"> </div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<!-- footer -->
</body>
</html>