-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 1.88 KB
/
index.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
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Charlatan</title>
<link rel="stylesheet" href="./css/main.css">
<link rel="icon" href="/images/1000x1000 charlatan favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@200;300;400&family=Poppins:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="logo">
<img src="/images/1000x1000 charlatan favicon.png" alt="Logo">
<h1>Charlatan</h1>
</div>
</nav>
<div class="character-profiles" id="app">
<!-- <div class="character-profiles--sidebar">
<button class="new-profile" type="button">Add Profile</button>
<div class="characters-profiles-list">
<div class="character-profiles-list-item character-profiles-list-item--selected">
<div class="profile__small-title">New Profile</div>
<div class="profile__small-body">No Description</div>
<div class="profile__small-updated">Thrusday 3:30pm</div>
</div>
</div>
</div>
<div class="profile-preview">
<input class="profile__title" type="text" placeholder="Enter Name...">
<input class="profile__gender" type="text" placeholder="Gender">
<input class="profile__age" type="text" placeholder="Age">
<textarea class="profile__body" placeholder="Description"></textarea>
</div> -->
</div>
<script src="/js/main.js" type="module"></script>
</body>
</html>