Files
journal_com/z_f6-1.html
wangjinlei 6e7ee3dd44 begin
2023-05-18 09:42:12 +08:00

121 lines
4.3 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<link rel="shortcut icon" href="img/tmr3.png" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="style/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style/style.css"/>
<style>
.topics {
font-family: Calibri;
font-size: 17px;
}
.topics>div a:hover {
color: #23527c !important;
text-decoration: underline;
}
.topics ul {
list-style-type: circle;
padding-left: 20px;
margin-top: 0;
}
.topics ul li {
text-align: left;
width: 100%;
float: none;
list-style-type:disc;
margin-bottom: 0;
}
.fuwenben img{
max-width: 100%;
margin: 0 auto;
display: block;
}
</style>
</head>
<body>
<div id="col-content">
<div id="top_bar">
<!--头部-->
</div>
<div class="article">
<div class="art_side">
<!--侧边栏-->
</div>
<div class="art_main art_main_con back_fff">
<div class="topics fuwenben">
<h2 class="rgb_color">Join Editorial Board</h2>
<div style="padding: 0 30px;line-height: 24px;text-align: justify;">
We are delighted to invite applications for the editorial board of our journal, "<i class="jour_name_title"></i>."
<br>
<br>As an editorial board member, you will play a vital role in shaping the content and direction of our journal. You will be responsible for reviewing papers, making decisions on papers to accept, reject or request for revisions, and promoting the journal to potential authors.
<br>
<br>To apply, please send the following information to <span class="jour_name_website"></span>:
<br>
<br>Name
<br>Photograph
<br>Research Keywords (3-5)
<br>CV (Please include a list of your recent publications)
<br>Scholar Page Link (e.g. Researchgate, Google Scholar, etc.)
<br>
<br>We are dedicated to maintaining a rigorous and fair selection process, and all applicants will be notified of the outcome of their application in a timely manner. The position is a volunteer role, however it will provide you with the opportunity to contribute to the global scientific research and also to network with experts in your field.
<br>
<br>We thank you for your interest in our journal and look forward to receiving your application.
<br>
<br>Best regards,
<br><span class="jour_name_editor"></span>
<br>Editor-in-Chief, <i class="jour_name_title"></i>
<br><br><br><br>
</div>
</div>
</div>
<br clear="both">
</div>
<div class="footer">
<!--底部菜单栏-->
</div>
</div>
</body>
<script src="js/jquery.min.js"></script>
<script src="js/return-top.js"></script>
<script src="js/layer/layer.js"></script>
<script src="js/js.js"></script>
<script src="js/side.js"></script>
<script>
$(document).ready(function(){
side_list();
$.ajax({
type: 'post', url: apiUrl + 'api/Journal/getJournal',
data: {
"journal_id": Jour_num
},
success: function (result) {
if (result.code == 0) {
// 基本信息
var arr_jour = result.data.journal;
$('.jour_name_title').html(arr_jour.title)
$('.jour_name_website').html(arr_jour.email)
$('.jour_name_editor').html(arr_jour.editorinchief)
} else {
// ShowDanger("请求失败!");
}
},
error: function () {
ShowDanger("error");
}
})
});
</script>
</html>