-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (80 loc) · 2.16 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CommitTrain Official Site</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff;
color: #333333;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color: #f4f4f4;
color: #333333;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
}
.header-title {
margin: 0;
text-align: left;
}
.header-link {
text-decoration: none;
color: #0366d6;
font-size: 16px;
}
.container {
width: 80%;
margin: 20px auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
flex-grow: 1;
}
h1 {
color: #333333;
text-align: left;
margin-bottom: 20px;
}
p {
line-height: 1.6;
margin-bottom: 20px;
text-align: justify;
}
footer {
background-color: #f4f4f4;
color: #333333;
padding: 10px 0;
display: flex;
justify-content: center;
flex-shrink: 0;
width: 100%; /* Ensure footer spans full width */
position: relative;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1 class="header-title">CommitTrain Official Site</h1>
<a class="header-link" href="https://github.com/YourRepository" target="_blank">GitHub</a>
</header>
<div class="container">
<h1>Introduction</h1>
<p>CommitTrain is a GitHub App designed to seamlessly integrate large-scale repositories with Continuous Integration (CI) systems. It simplifies the configuration and management of CI, enabling development teams to focus more on coding and innovation.</p>
</div>
<footer>
<p>© 2023 CommitTrain. All rights reserved.</p>
</footer>
</body>
</html>