freechat/freechat-client/pages/index.html
shockrah 26bd2a3af9 better css for the navbar
and addinga a better navbar
2020-12-07 22:18:05 -08:00

25 lines
890 B
HTML

<!-- Keep in mind basically all the major components of the app are held together here -->
<!-- The reason for this is because I want to keep the electron app as simple as I can get it -->
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.css"/>
<link rel="stylesheet" href="css/style.css"/>
<title>Freechat</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand">
<img src="../assets/logo.png" width="30" height="30" class="d-inline-block align-top" loading="lazy">
Freechat
</a>
<ul class="navbar-nav mr-auto">
<li class="nav-item"><a class="btn btn-outline-secondary btn-nav-settings">Settings</a></li>
</ul>
</nav>
</body>
<script src="./js/loader.js"></script>
</html>