belle

An HTTP / Websocket library in C++17 using Boost.Beast and Boost.ASIO.


belle

/

example

/

server

/

https

/

public

/

index.html

1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!DOCTYPE html><html lang="en">
<head>
  <title>Hello, Belle!</title>
  <meta charset="utf-8">
  <meta name="description" content="Hello, Belle!">
  <style>#content{border:1px solid #000000;border-radius:5px;text-align:center;}html{font-size:16px;font-weight:normal;height:100%;}</style>
</head>
<body>
  <div id="content">
    <h1>Hello, Belle!</h1>
    <p>This is a static file being served from the public directory.</p>
  </div>
</body>
</html>
Back to Top