witty/assets/index.html

74 lines
2.0 KiB
HTML
Raw Normal View History

2022-01-04 21:41:41 +01:00
<!doctype html>
2022-01-11 16:08:32 +01:00
<html lang="en">
2022-01-04 21:41:41 +01:00
<head>
2022-01-11 16:08:32 +01:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
2022-01-04 21:41:41 +01:00
2022-01-11 16:08:32 +01:00
<title>Web Terminal</title>
2022-01-04 21:41:41 +01:00
2022-01-11 16:08:32 +01:00
<!-- Bootstrap core CSS -->
<link href="external/bootstrap.min.css" rel="stylesheet">
<script src=
"external/bootstrap.min.js">
</script>
2022-01-04 21:41:41 +01:00
</head>
<body>
2022-01-11 16:08:32 +01:00
<header style="margin-bottom: 3em;">
<nav class="navbar navbar-light bg-light">
<div class="container-fluid justify-content-center ">
<span class="navbar-brand clearfix ">
<img src="logo.svg" alt="" width="48" height="36" class="d-inline-block align-text-top" />
<strong> &nbsp &nbsp &nbsp &nbspWeb Terminal</strong>
</span>
</div>
</nav>
</header>
<main>
<div class="container">
<h1 style="text-align:center;color:green;">
GeeksforGeeks
</h1>
<form>
<div class="form-group">
<label for="">Enter Your Name:</label>
<input class="form-control"
type="text"
placeholder="Input Your Name Here">
</div>
<div class="form-group">
<button class="btn btn-success btn-lg float-right"
type="submit">
Submit
</button>
</div>
</form>
2022-01-04 21:41:41 +01:00
</div>
2022-01-11 16:08:32 +01:00
<div class="container">
<div class="row">
<div class="card" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's
content.</p>
<a href="#" class="card-link">Card link</a>
<a href="#" class="card-link">Another link</a>
</div>
</div>
</div>
</div>
</main>
2022-01-04 21:41:41 +01:00
</body>
</html>