PHP Classes

File: view/includes/header.php

Recommend this page to a friend!
  Classes of Ahmad Mustapha   Simple React PHP HTTP Server   view/includes/header.php   Download  
File: view/includes/header.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Simple React PHP HTTP Server
Pure PHP HTTP server using ReactPHP library
Author: By
Last change:
Date: 3 years ago
Size: 847 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="en">
<head>
    <link rel="stylesheet" href="/css/bootstrap.min.css">
    <link rel="stylesheet" href="/css/bootstrap-icons.css">
</head>

<body>
<nav class="navbar navbar-expand-lg navbar-light bg-primary">
    <div class="container-fluid">
        <a class="navbar-brand text-capitalize text-white fw-bold" href="/">
            <i class="bi bi-house"></i>
            <i>Simple Http Server</i>
        </a>
        <div class="d-flex justify-content-end">
            <ul class="navbar-nav">
                <li class="nav-item">
                    <a class="nav-link btn btn-sm btn-danger text-white fw-bold" href="/list">
                        <i class="bi bi-list-ul"></i>
                        Functionalities
                    </a>
                </li>
            </ul>
        </div>
    </div>
</nav>