-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
118 lines (116 loc) · 3.53 KB
/
about.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TechInnovate Solutions - 会社概要</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color: #333;
color: white;
padding: 1rem;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 1rem;
}
nav ul li a {
color: white;
text-decoration: none;
}
main {
flex-grow: 1;
padding: 2rem;
}
.company-info {
display: flex;
justify-content: space-between;
}
.info-section {
flex-basis: 48%;
}
table {
width: 100%;
border-collapse: collapse;
}
table td {
padding: 0.5rem;
border: 1px solid #ccc;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
margin-top: 2rem;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">ホーム</a></li>
<li><a href="about.html">会社概要</a></li>
<li><a href="contact.html">お問い合わせ</a></li>
</ul>
</nav>
</header>
<main>
<h1>会社概要</h1>
<div class="company-info">
<div class="info-section">
<h2>私たちのミッション</h2>
<p>TechInnovate Solutionsは、革新的なテクノロジーソリューションを通じて、企業の成長と社会の発展に貢献することを使命としています。</p>
<h2>沿革</h2>
<ul>
<li>2010年 - 会社設立</li>
<li>2015年 - クラウドサービス部門の立ち上げ</li>
<li>2018年 - AI研究所の開設</li>
<li>2020年 - IoTプラットフォームのリリース</li>
</ul>
</div>
<div class="info-section">
<h2>会社情報</h2>
<table>
<tr>
<td><strong>社名</strong></td>
<td>TechInnovate Solutions株式会社</td>
</tr>
<tr>
<td><strong>設立</strong></td>
<td>2010年4月1日</td>
</tr>
<tr>
<td><strong>資本金</strong></td>
<td>1億円</td>
</tr>
<tr>
<td><strong>従業員数</strong></td>
<td>250名(2023年4月現在)</td>
</tr>
<tr>
<td><strong>所在地</strong></td>
<td>東京都港区テクノロジー通り1-1-1</td>
</tr>
</table>
</div>
</div>
</main>
<footer>
<p>© 2023 TechInnovate Solutions. All rights reserved.</p>
</footer>
</body>
</html>