Skip to content

Commit bae38d0

Browse files
committed
intial commit
1 parent 7bf6719 commit bae38d0

File tree

4 files changed

+52
-0
lines changed

4 files changed

+52
-0
lines changed

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
openapi.tools

app.js

Whitespace-only changes.

index.html

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<title>Open API Tools | Editors, Linters, Parsers, Code Generators, Documentation, Testing for APIs </title>
5+
6+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
7+
<link href="https://fonts.googleapis.com/css?family=Bitter|Raleway" rel="stylesheet">
8+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
9+
<link rel="stylesheet" href="./styles.css">
10+
</head>
11+
<body>
12+
<div class="container-fluid">
13+
<div class="row">
14+
<div class="col-lg">
15+
<h2 class="text-center display-2">Open API Tools</h2>
16+
</div>
17+
</div>
18+
<nav>
19+
<ul class="nav justify-content-center">
20+
<li class="nav-item">
21+
<a class="nav-link active" href="#">Editors</a>
22+
</li>
23+
<li class="nav-item">
24+
<a class="nav-link" href="#">Linters</a>
25+
</li>
26+
<li class="nav-item">
27+
<a class="nav-link" href="#">Parsers</a>
28+
</li>
29+
<li class="nav-item">
30+
<a class="nav-link" href="#">Code Generators</a>
31+
</li>
32+
<li class="nav-item">
33+
<a class="nav-link" href="#">Documentation</a>
34+
</li>
35+
<li class="nav-item">
36+
<a class="nav-link" href="#">Testing </a>
37+
</li>
38+
</ul>
39+
</nav>
40+
<hr>
41+
42+
</div>
43+
</body>
44+
</html>

styles.css

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
h1, h2, h3, h4, h5, h6 {
2+
font-family: 'Bitter', serif;
3+
}
4+
5+
p, li, ol, a, td {
6+
font-family: 'Raleway', sans-serif;
7+
}

0 commit comments

Comments
 (0)