-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1191 from xiaozhucheng/xgcbr
git example_acdemo.html
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Welcome to NHP Demo</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f0f0f0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
} | ||
.container { | ||
text-align: center; | ||
background-color: white; | ||
padding: 2rem; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | ||
} | ||
h1 { | ||
color: #4a4a4a; | ||
font-size: 2.5rem; | ||
margin-bottom: 1rem; | ||
} | ||
p { | ||
color: #0066cc; | ||
font-size: 1.8rem; | ||
margin-top: 1rem; | ||
font-weight: bold; | ||
} | ||
#message { | ||
margin-top: 1rem; | ||
color: green; | ||
font-size: 1.5rem; | ||
display: none; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Welcome to the Demo NHP-AC Server</h1> | ||
<p>acdemo.opennhp.org</p> | ||
<div><a href="https://dnschecker.org/port-scanner.php?query=acdemo.opennhp.org" target="_blank">Scan Its Ports >></a></div> | ||
<div id="message"></div> | ||
</div> | ||
</body> | ||
</html> |