加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
about.html 4.63 KB
一键复制 编辑 原始数据 按行查看 历史
ZHUOYA ZHOU 提交于 2022-10-06 18:18 . Add files via upload
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/about.css">
<link rel="stylesheet" href="style/font-awesome/css/font-awesome.css">
<script type="text/javascript" src="style/js/jquery-3.5.1.js"></script>
<title>search status form</title>
<script type="text/jscript">
//
$(function(){
$(".item").each(function(){
$(this).children(".item-content").hide();
});
$(".question").each(function(){
$(this).click(function(){
var navEle = $(this).parents(".item").children(".item-content");
if(navEle.css("display") != "none"){
navEle.slideUp(500);
}else{
var navMenu = navEle.parents(".item");
var otherNavs = navMenu.siblings();
otherNavs.each(function(){
$(this).children(".item-content").slideUp(500);
});
navEle.slideDown(500);
}
});
});
});
</script>
</head>
<body>
<form class="post-form" method="get" action ="poststatusprocess.php">
<div class="table-left"></div>
<div class="table-right">
<div class="title">
<i class="fa fa-user-circle fa-3x" aria-hidden="true"></i>
<h2>&nbsp;About this assignment</h2>
</div>
<div class="right-login">
Return to<a href="index.html">&nbsp;Home Page</a>
</div>
<div class="table-seg"></div>
<div class="table-input" >
<div class="content-left" id="content-left">
<div class="nav">
<!-- every item -->
<div class="item">
<!-- question -->
<div class="question">What special features have you done or attempted in creating the website?</div>
<!-- answer -->
<div class="item-content">
<div class="answer">This is a report webpage for presenting what you have done based on the question provided.
Step 1. List your answers in bullet point for each question. For readability, include the questions as
well.
 What special features have you done or attempted in creating the website?
 Which part(s) did you have trouble with?
 What would you like to do better next time?
 What you have learnt along the way? Did you use any references or resources during this
</div>
</div>
</div>
<div class="seg"></div>
<div class="item">
<!-- question-->
<div class="question">Which part(s) did you have trouble with?</div>
<!-- answer -->
<div class="item-content">
<div class="answer">This is a report webpage for presenting what you have done based on the question provided. Step 1. List your answers in bullet point for each question. For readability, include the questions as well.  What special features have you done or attempted in creating the website?  Which part(s) did you have trouble with?  What would you like to do better next time?  What you have learnt along the way? Did you use any references or resources during this</div>
</div>
</div>
<div class="seg"></div>
<div class="item">
<!-- question -->
<div class="question">What would you like to do better next time?</div>
<!-- answer -->
<div class="item-content">
<div class="answer">This is a report webpage for presenting what you have done based on the question provided. Step 1. List your answers in bullet point for each question. For readability, include the questions as well.  What special features have you done or attempted in creating the website?  Which part(s) did you have trouble with?  What would you like to do better next time?  What you have learnt along the way? Did you use any references or resources during this</div>
</div>
</div>
<div class="seg"></div>
<div class="item">
<!-- question -->
<div class="question">What you have learnt along the way? Did you use any references or resources during this
project? If so, please include the sources.</div>
<!-- answer -->
<div class="item-content">
<div class="answer">This is a report webpage for presenting what you have done based on the question provided. Step 1. List your answers in bullet point for each question. For readability, include the questions as well.  What special features have you done or attempted in creating the website?  Which part(s) did you have trouble with?  What would you like to do better next time?  What you have learnt along the way? Did you use any references or resources during this</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化