-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (31 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<title>TeneT (0.0.1)</title>
</head>
<body>
<link rel="stylesheet" href="src/style.css">
<!--<h1>Welcome to TeneT</h1>
<h2>About</h2>
<div>
<p>TeneT is a place for posting bundles of text, either in the form of blog posts, humble attemps at storytelling, informative writings as well as potentially devlog entries.</p>
<p>I will mainly share my fabricated stories and informative writings/devlogs, in a measle attempt to try and give you guys some good influence in this world of adversity.</p>
<p>This website is very barebones as of now, as I am not familiar with css, html nor javascript. That said I do plan on improving the look of this as I gain more experience.</p>
</div>
<h2>Test Article<button onclick="showArticle('article1')">show</button></h2>
<div style="display: none;" id="article1">
<p>Test.</p>
<p>Test.</p>
<p>Test.</p>
</div>
<h2>Test Article2<button onclick="showArticle('article2')">show</button></h2>
<div style="display: none;" id="article2">
<p>Test2.</p>
</div>-->
<div id="root"></div>
<script type="module" src="src/main.jsx"></script>
</body>
</html>