mirror of
https://github.com/syssecfsu/witty.git
synced 2024-11-01 17:49:26 +01:00
74 lines
2.0 KiB
HTML
74 lines
2.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<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="">
|
|
|
|
<title>Web Terminal</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="external/bootstrap.min.css" rel="stylesheet">
|
|
<script src=
|
|
"external/bootstrap.min.js">
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<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>        Web 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>
|
|
</div>
|
|
|
|
<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>
|
|
</body>
|
|
|
|
</html> |