-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportofolio.html
44 lines (44 loc) · 1.46 KB
/
portofolio.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="stylesheet.css" rel="stylesheet" />
<link href="./bootstrap-4.5.2-dist/css/bootstrap.css" rel="stylesheet" />
<title>Document</title>
</head>
<body>
<nav class="site-header">
<div
class="container d-flex flex-column flex-md-row justify-content-between"
>
<a class="py-2" href="#" aria-label="Product">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="d-block mx-auto"
role="img"
viewBox="0 0 24 24"
focusable="false"
>
<title>Product</title>
<circle cx="12" cy="12" r="10" />
<path
d="M14.31 8l5.74 9.94M9.69 8h11.48M7.38 12l5.74-9.94M9.69 16L3.95 6.06M14.31 16H2.83m13.79-4l-5.74 9.94"
/>
</svg>
</a>
<a class="py-2 d-none d-md-inline-block" href="#">Home</a>
<a class="py-2 d-none d-md-inline-block" href="#">Project</a>
<a class="py-2 d-none d-md-inline-block" href="#">About</a>
<a class="py-2 d-none d-md-inline-block" href="#">Contact</a>
</div>
</nav>
</body>
</html>