moved style to external style sheet style.css,

add contact information in contact.html
This commit is contained in:
2022-07-22 22:54:07 -07:00
parent b902c03fde
commit 83f2fa4044
3 changed files with 59 additions and 29 deletions

View File

@@ -3,34 +3,7 @@
<head>
<meta charset="utf-8">
<title>tronnet homepage</title>
<style>
.std-text {
font-family: monospace;
color: white;
margin: 20px 0px 20px 0px;
}
.btn-group button {
background-color: #00ff00;
border: 1px solid #00ff00;
color: black;
padding: 10px 24px;
margin: 0px 20px 0px 20px;
cursor: pointer;
float: left;
}
.btn-group button:not(:last-child) {
border-right: none;
}
.btn-group:after {
content: "";
clear: both;
display: table;
}
.btn-group button:hover {
background-color: #00AA00;
border: #00AA00;
}
</style>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body style="background-color:black;">
<h1 class = "std-text" style = "font-size: 72px; text-align: center;">tronnet</h1>
@@ -45,5 +18,9 @@
<div class="btn-group" style = "margin: auto; display: flex; flex-direction: row; justify-content: center;">
<button onclick="window.location.href='https://root.tronnet.net';">root</button>
</div>
<h3 class = "std-text" style = "font-size: 24px; text-align: center;">Information</h3>
<div class="btn-group" style = "margin: auto; display: flex; flex-direction: row; justify-content: center;">
<button onclick="window.location.href='contact.html';">Contact Us</button>
</div>
</body>
</html>
</html>