Skip to content
Snippets Groups Projects
Commit 96eb2d2e authored by Haoyu Sun's avatar Haoyu Sun
Browse files

itemDetail

parent ee51a62a
No related branches found
No related tags found
1 merge request!3itemDetail
.logo-section img {
height: 50px;
width: 50px;
}
/*.nav{*/
/* ul {*/
/* list-style: none;*/
/* padding: 0;*/
/* margin: 0;*/
/* li {*/
/* display: inline;*/
/* margin: 0 15px;*/
/* a {*/
/* text-decoration: none;*/
/* color: #333;*/
/* }*/
/* }*/
/* }*/
/*}*/
.logo-section img {
height: 50px; /* Logo height */
}
.nav ul {
list-style: none; /* cancel default list style */
padding: 0; /* cancel default padding */
margin: 0; /* cancel default margin */
}
.nav li {
display: inline; /* make list arranged in horizontal pattern */
margin: 0 15px; /* add left and right spacing */
}
.nav a {
text-decoration: none; /* remove underline */
color: #333; /* link color */
}
\ No newline at end of file
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Title</title> <title>Title</title>
<link rel="stylesheet" href="../../css/ItemDetail.css">
<script> <script>
function sendRequest() { function sendRequest() {
alert("exchange message send successful"); alert("exchange message send successful");
...@@ -12,6 +13,18 @@ ...@@ -12,6 +13,18 @@
</head> </head>
<body> <body>
<!-- <div>itemDetail</div>--> <!-- <div>itemDetail</div>-->
<div class="logo-section">
<img th:src="@{/images/logo.jpg}" alt="Logo">
</div>
<nav class="nav">
<ul>
<li><a th:href="@{/index}">Index</a></li>
<li><a th:href="@{/groupList}">GroupList</a></li>
<li><a th:href="@{/itemList}">Shelf Item</a></li>
<li><a th:href="@{/personalInformation}">Personal Information</a></li>
</ul>
</nav>
<table> <table>
<!-- thead--> <!-- thead-->
<thead> <thead>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment