-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (76 loc) · 1.56 KB
/
index.html
File metadata and controls
86 lines (76 loc) · 1.56 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Codeship Chatbot</title>
<link rel="stylesheet" href="style.css">
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f8ff;
margin: 0;
padding: 0;
}
header {
background-color: #9fd3ec;
color: #fff;
padding: 30px 20px;
text-align: center;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
header h1 {
margin: 0;
font-size: 2.5em;
}
header p {
font-size: 1.2em;
margin-top: 10px;
}
main {
padding: 20px;
max-width: 1000px;
margin: auto;
}
iframe {
width: 100%;
height: 600px;
border-radius: 12px;
border: 2px solid #9fd3ec;
margin-top: 20px;
}
.nav {
text-align: center;
margin-top: 20px;
}
.nav a {
background-color: #9fd3ec;
color: #fff;
padding: 12px 25px;
text-decoration: none;
font-weight: bold;
border-radius: 8px;
transition: background 0.3s;
}
.nav a:hover {
background-color: #7ac1d9;
}
</style>
</head>
<body>
<header>
<h1>Codeship</h1>
<p>Your personal AI coding tutor</p>
</header>
<main>
<iframe
src="https://www.chatbase.co/chatbot-iframe/uH9sDdZlg-lhp_y7oLFfw"
width="100%"
style="height: 100%; min-height: 700px"
frameborder="0"
></iframe>
<div class="nav">
<a href="practice.html">Try Out What You Learned →</a>
</div>
</main>
</body>
</html>