Skip to content

Instantly share code, notes, and snippets.

@desoga10
Last active April 7, 2019 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save desoga10/7833bb36808d65800c65775f8a0a4ecd to your computer and use it in GitHub Desktop.
Save desoga10/7833bb36808d65800c65775f8a0a4ecd to your computer and use it in GitHub Desktop.
The Navbar Section Created
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"/>
<title>Player Register App</title>
</head>
<body>
<!-- Navbar Section -->
<nav class="navbar navbar-expand-sm bg-dark navbar-dark d-flex justify-content-center">
<h1 class="pl-4 text-white" id="header">
<i class="far fa-futbol pr-3"></i>
Soccer Player Register App
</h1>
</nav>
<script src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment