Mainmenu
Mainmenu
DOCTYPE html>
<html>
<body>
<style>
h1 {text-align: center;}
h1 {color: firebrick;}
.button {
border: none;
color: white;
text-align: center;
text-decoration: none;
display: block;
font-size: 15px;
transition-duration: 0.4s;
cursor: pointer;
.button1 {
background-color: lightgrey;
color: black;
.button1:hover {
background-color: grey;
color: white;
}
.button2 {
background-color: lightgrey;
color: black;
.button2:hover {
background-color: grey;
color: white;
.button3 {
background-color: lightgrey;
color: black;
.button3:hover {
background-color: grey;
color: white;
</style>
</head>
<body>
<form action="/action_page.php">
<fieldset>
<h1>SSK3408 SYSTEM</h1>
</fieldset>
<fieldset>
</fieldset>
</form>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<style>
h1 {text-align: center;}
h1 {color: firebrick;}
.button {
border: none;
color: white;
text-align: centre;
text-decoration: none;
display: inline-block;
font-size: 12px;
cursor: pointer;
.wrapper {
text-align: center;
display: inline-block;
position: absolute;
top: 60%;
left: 50%;
.button1 {
background-color: lightgrey;
color: black;
.button1:hover {
background-color: grey;
color: white;
.button2 {
background-color: lightgrey;
color: black;
.button2:hover {
background-color: grey;
color: white;
.button3 {
background-color: lightgrey;
color: black;
.button3:hover {
background-color: grey;
color: white;
label{
width: 100px;
display: inline-block;
text-align: left;
padding-right: 5px;
font-weight: bold;
</style>
</head>
<body>
<form action="/action_page.php">
<fieldset>
<h1>SSK3408 SYSTEM</h1>
</fieldset>
<fieldset>
<div class="studentid">
<label for="studentid">StudentID:</label>
</div>
<div class="name">
<label for="name">Name:</label>
</div>
<div class="gender">
<label for="gender">Gender:</label>
<label for="male">MALE</label>
<label for="female">FEMALE</label><br><br>
</div>
<label for="skill">Skill:</label>
<div class="skill2">
<div class="skill3">
</div>
<label for="major">Major:</label>
<option value="Multimedia">Multimedia</option>
</select><br><br><br><br>
<div class="wrapper">
</div>
</fieldset>
</form>
</body>
</html>