25 lines
976 B
HTML
25 lines
976 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Welcome to :hostname!</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self';">
|
||
|
<link rel="stylesheet" type="text/css" href="./bootstrap.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<div class="jumbotron">
|
||
|
<h1>Hello, world!</h1>
|
||
|
<p>Your website is located in one of two places:</p>
|
||
|
<ul>
|
||
|
<li>on your <code>Desktop</code> inside of the <code>www</code> directory and <code>:hostname</code></li>
|
||
|
<li><code>~/www/:hostname</code> (your home folder, under <code>www/:hostname</code></li>
|
||
|
<ul>
|
||
|
<p>This very file is called <code>index.html</code>.
|
||
|
You can open it up in <code>notepad</code> and change it up a little if you'd like.</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script src="./jquery.js"></script>
|
||
|
</body>
|
||
|
</html>
|