2021-07-19 00:56:02 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2022-09-12 16:36:27 +00:00
|
|
|
<title>@ViewData["Title"] - Coding HTML 101!</title>
|
2021-07-19 00:56:02 +00:00
|
|
|
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
|
|
|
<link rel="stylesheet" href="~/css/site.css" />
|
2021-07-19 02:17:18 +00:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
|
|
|
|
@await RenderSectionAsync("Css", false)
|
2021-07-19 00:56:02 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2021-07-20 02:02:14 +00:00
|
|
|
<header class="container">
|
2021-07-21 16:43:14 +00:00
|
|
|
<nav class="navbar navbar-expand navbar-dark justify-content-between">
|
2022-09-12 16:40:33 +00:00
|
|
|
<a class="navbar-brand text-white" href="#">Coding HTML 101</a>
|
2021-07-21 01:53:39 +00:00
|
|
|
<form class="form-inline" action="">
|
2021-07-21 15:00:05 +00:00
|
|
|
<input type="text" class="form-control mr-sm-2" id="your-name-text" placeholder="Enter your name!" />
|
|
|
|
<input type="text" class="form-control" id="your-color-text" placeholder="Color?" />
|
2021-07-21 01:53:39 +00:00
|
|
|
</form>
|
2021-07-22 11:34:17 +00:00
|
|
|
<a class="navbar-text ml-3" href="https://www.w3schools.com/cssref/css_colors.asp" target="_blank">List of colors</a>
|
2021-07-20 03:43:01 +00:00
|
|
|
<div class="collapse navbar-collapse">
|
2021-07-22 11:34:17 +00:00
|
|
|
<ul class="navbar-nav ml-auto">
|
2021-07-20 03:43:01 +00:00
|
|
|
<li class="nav-item d-none d-md-block">
|
|
|
|
<div class="navbar-text font-italic" id="live-mode-status">
|
|
|
|
<div><strong>Live Mode Enabled</strong></div>
|
|
|
|
<div>Anything the teacher types will show in your editor</div>
|
|
|
|
</div>
|
2021-07-20 02:02:14 +00:00
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link btn" id="live-mode-link" href="#live">Live Mode</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</nav>
|
2021-07-19 00:56:02 +00:00
|
|
|
</header>
|
2021-07-21 16:43:14 +00:00
|
|
|
<div>
|
|
|
|
@RenderBody()
|
2021-07-19 00:56:02 +00:00
|
|
|
</div>
|
2021-07-21 16:43:14 +00:00
|
|
|
<footer class="container">
|
2021-07-23 02:51:01 +00:00
|
|
|
<div id="users-list" class="text-white"> </div>
|
2021-07-21 16:43:14 +00:00
|
|
|
</footer>
|
2021-07-19 00:56:02 +00:00
|
|
|
|
|
|
|
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
2021-07-21 15:00:05 +00:00
|
|
|
<script src="~/js/extensions.js"></script>
|
2021-07-19 00:56:02 +00:00
|
|
|
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<script src="~/js/site.js" asp-append-version="true"></script>
|
|
|
|
|
2021-07-19 02:17:18 +00:00
|
|
|
@await RenderSectionAsync("Scripts", false)
|
2021-07-19 00:56:02 +00:00
|
|
|
</body>
|
|
|
|
</html>
|