forked from cpe207/lecture03-2566-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path03-navbar.html
27 lines (27 loc) · 899 Bytes
/
03-navbar.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Navbar</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"
></script>
</head>
<body>
<h3>My Social Media</h3>
<a href="#" class="">Profile</a>
<a href="#" class="">Gallery</a>
<a href="#" class="">Setting</a>
<span>Hi Chayanin!</span>
<button class="">Logout</button>
</body>
</html>