-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (38 loc) · 1.26 KB
/
index.html
File metadata and controls
44 lines (38 loc) · 1.26 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
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Portfolio</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>ともすた</h1>
<p>学ぶ。をちゃんと</p>
</header>
<section class="portfolio">
<h2>PORTFOLIO</h2>
<div class="portfolio__icons">
<img src="https://picsum.photos/356/200" alt="">
<img src="https://picsum.photos/356/190" alt="">
<img src="https://picsum.photos/356/300" alt="">
</div>
</section>
<section class="about">
<h2>ABOUT</h2>
<article>
<p>ともすた合同会社は、「学ぶ。をちゃんと」をコーポーレートテーマに、すべての人が学びやすい環境を作ります。<br>
映像講義やオンラインコンテンツを通じてプログラミングを学びたい方々を応援しています。</p>
<div class="about__button">
<a href="#" class="btn">詳しくみる</a>
</div>
</article>
</section>
<footer>
©︎ 2021 ともすた
</footer>
</body>
</html>