-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
61 lines (61 loc) · 2.05 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
58
59
60
61
<!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">
<title>Conversational UI Demo</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="robots" content="noindex">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<article role="log" aria-live="polite" aria-atomic="false">
<ul class="chat"></ul>
<noscript>
<ul class="chat">
<li class="message bot show"><p>I'm sorry, but you need JavaScript turned on for this website to function.</p></li>
</ul>
</noscript>
</article>
<div class="content" role="document" aria-hidden="true" aria-label="Information">
<button class="close" aria-label="Close">×</button>
<article id="projects-p1">
<h3>Project 1</h3>
<p>Project 1 info goes here...</p>
</article>
<article id="projects-p2">
<h3>Project 2</h3>
<p>Project 2 info goes here...</p>
</article>
<article id="projects-p3">
<h3>Project 3</h3>
<p>Project 3 info goes here...</p>
</article>
<article id="writing-articles">
<h3>Articles</h3>
<p>Articles go here...</p>
</article>
<article id="writing-theses">
<h3>Theses</h3>
<p>Theses goes here...</p>
</article>
<article id="contact-socialmedia">
<h3>Social media</h3>
<p>Social media links go here...</p>
</article>
<article id="contact-email">
<h3>Email</h3>
<p>Email goes here...</p>
</article>
<article id="contact-address">
<h3>Address</h3>
<p>Address info goes here.</p>
</article>
</div>
</div>
<script src="js/app.min.js"></script>
</body>
</html>