blob: d34e5127f2f519d19fba8f161b132ff029f75129 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/svg" href="assets/favicon.svg">
<link rel="stylesheet" href="css/style.css">
<title>Papo - Chat With Freedom</title>
</head>
<body>
<header>
<nav class="navbar">
<a href="/">
<img class="nav_logo" src="assets/logo.svg" alt="product logo"/>
</a>
<ul class="nav_links">
<li><a href="/about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="/pricing.html">Pricing</a></li>
</ul>
<div>
<button class="login basic_button">Log in</button>
<button class="sign_up basic_button">Register</button>
</div>
</nav>
</header>
<main></main>
<footer></footer>
</body>
</html>
|