Skip to content
Snippets Groups Projects
Commit ec7b8b80 authored by MaximeOLIVA's avatar MaximeOLIVA
Browse files

FINAL

parent d7a6e0cc
No related branches found
No related tags found
No related merge requests found
No preview for this file type
No preview for this file type
#profilname {
text-align: center;
}
.container {
margin-top: 20px;
}
#panel-default {
border: solid black 1px;
margin-left: auto;
margin-right: auto;
width: 608px;
padding: 5px 5px 5px 5px;
background-color: lightgrey;
}
#panel-home {
border: solid black 1px;
display: inline-block;
width: 188px;
height: 30px;
text-align: center;
line-height: 27px;
}
#panel-browse {
border: solid black 1px;
display: inline-block;
width: 188px;
height: 30px;
text-align: center;
margin-left: 15px;
line-height: 27px;
}
#panel-account {
border: solid black 1px;
display: inline-block;
width: 188px;
height: 30px;
text-align: center;
margin-left: 15px;
line-height: 27px;
}
#panel-home:hover {
background-color: grey;
cursor: pointer;
}
#panel-browse:hover {
background-color: grey;
cursor: pointer;
}
#panel-account:hover {
background-color: grey;
cursor: pointer;
}
<!DOCTYPE html>
<html>
<head>
<link href="welcome.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="container">
<div id="panel-default">
<div id="panel-home" onsubmit="displayHomePage()">Home</div>
<div id="panel-browse" onsubmit="displayBrowsePage()">Browse</div>
<div id="panel-account" onsubmit="displayAccountPage()">Account</div>
</div>
</div>
<div id="accountPage">
<h2>Account page </h2>
</div>
<div id="browsePage">
<h2>Account page </h2>
</div>
<div id="homePage">
<h2>Account page </h2>
</div>
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment