-
Notifications
You must be signed in to change notification settings - Fork 0
/
quick-menu.html
40 lines (39 loc) · 1.32 KB
/
quick-menu.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="src/main.css"/>
<title>Shupe Systems</title>
<link rel="icon" href="svg.svg">
</head>
<body>
<header>
<div id="logo">
<a id="home-link" href="index.html">
<!--<img src="svg(1).svg" alt="Shupe Systems"/> -->
<div id="home">Shupe Systems/projects</div>
</a>
</div>
<nav>
<a href="./about.html">about</a>
<a href="./resume.html">resume</a>
<a href="./contact.html">contact</a>
<a href="./projects.html">projects</a>
<a href="./blog.html">blog</a>
</nav>
</header>
<main>
<p>This project is a tool that allows users to interact
with a database using a terminal-based interface. It achieves this
by taking JSON and turning it into a functional database front-end,
using Python and the Simple CLI Menu library. Users can use a series
of menus to view, edit, and search data in the database. The
interpreter is able to handle common SQL commands and supports basic
CRUD operations. The aim of the project is to provide a lightweight,
easy-to-use solution for working with databases in a command-line
environment.</p>
</main>
</body>
</html>