-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (54 loc) · 2.29 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
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sic Transit Imperium</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
<div class="left-panel">
<div class="basic-info">
<div class="pfp">
<img src="assets/Background.png" alt="">
</div>
<div class="info">
<h1 id="name">Ishaan Das</h1>
<h2 id="age">Age: 20</h2>
<h2 id="gender">Gender: Male</h2>
</div>
</div>
<div class="stats">
<h2>Mental Stability</h2>
<div class="empty-bar"></div>
<div class="bar-container">
<div id="m" class="bar-mental"></div>
</div>
<h2>Health</h2>
<div class="empty-bar"></div>
<div class="bar-container"> <div id="h" class="bar-mental"></div></div>
<h2>Defence</h2>
<div class="empty-bar"></div>
<div class="bar-container"> <div id="d" class="bar-mental"></div></div>
<h2>Hope</h2>
<div class="empty-bar"></div>
<div class="bar-container"> <div id="hh" class="bar-mental"></div></div>
</div>
</div>
<div class="right-panel">
<h1 id="title">Chapter 1</h1>
<p id="desc">Swingin in the backyard, pull up in your fast car whistlin my name
open up a beer and you say, get over here and play a video game im in his
favorite sundress, watching me get undressed take that body downtown i say, you the bestest, lean in for a.
</p>
<img src="assets/StoryImage.png" alt="">
<p>Swingin in the backyard, pull up in your fast car whistlin my name
open up a beer and you say, get over here and play a video game im in his
favorite sundress, watching me get undressed take that body downtown i say, you the bestest, lean in for a.
</p>
</div>
</main>
<script src="./js/site.js"></script>
</body>
</html>