-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcase.html
More file actions
27 lines (25 loc) · 883 Bytes
/
case.html
File metadata and controls
27 lines (25 loc) · 883 Bytes
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>Case</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="case-style.css">
</head>
<body>
<header class="site-header">
<div class="logo-wrap">
<a href="index.html" class="logo">My Portfolio</a>
</div>
<nav class="nav-container">
<a href="index.html#public-cases" class="nav-link">Public</a>
<a href="index.html#private-cases" class="nav-link">Private</a>
</nav>
</header>
<main id="case-container"></main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js"></script>
<script src="case.js"></script>
</body>
</html>