Skip to content

Commit b2f1a8c

Browse files
committed
basic nodejs | expressjs πŸ—½πŸ‘¨β€πŸ’»
1 parent 86af303 commit b2f1a8c

File tree

9 files changed

+422
-0
lines changed

9 files changed

+422
-0
lines changed
File renamed without changes.
File renamed without changes.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<html>
2+
3+
<head>
4+
<title>Express HTML</title>
5+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
6+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
7+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
8+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
9+
</head>
10+
11+
<body>
12+
<div style="margin:100px;">
13+
<nav class="navbar navbar-inverse navbar-static-top">
14+
<div class="container">
15+
<a class="navbar-brand" href="/">Express HTML</a>
16+
<ul class="nav navbar-nav">
17+
<li class="active">
18+
<a href="/">Home</a>
19+
</li>
20+
<li>
21+
<a href="/about">About</a>
22+
</li>
23+
<li>
24+
<a href="/sitemap">Sitemap</a>
25+
</li>
26+
</ul>
27+
</div>
28+
</nav>
29+
<div class="jumbotron" style="padding:40px;">
30+
<h1>Hello, world!</h1>
31+
<p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content
32+
or information.</p>
33+
<p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a></p>
34+
</div>
35+
</div>
36+
</body>
37+
38+
</html>

0 commit comments

Comments
Β (0)