-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog1.html
More file actions
89 lines (86 loc) · 2.34 KB
/
Copy pathblog1.html
File metadata and controls
89 lines (86 loc) · 2.34 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
87
88
89
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>DEAR WITH BLOG</title>
<link rel="icon" href="https://uploads.scratch.mit.edu/get_image/user/142897298_60x60.png">
<style>
body {
margin: 0px;
color: white;
background: black;
font-family: Google Sans;
}
header {
background: #5be4b3;
color: black;
zoom: 125%;
}
main {
zoom: 175%;
height: 370px;
}
b {
color: #5be4b3;
}
.titleHeading {
width: 450px;
}
a {
color: #5be4b3;
}
section {
text-align: center;
background: #404040;
margin: 20px;
border-radius: 20px;
}
#blog {
text-align: center;
background: #5be4b3;
color: black;
margin: 20px;
height: 400px;
border-radius: 20px;
}
footer {
text-align: center;
background: #5be4b3;
color: black;
margin: 20px;
border-radius: 20px;
}
button {
background-color: black;
color: white;
height: 40px;
width: 500px;
border-radius: 10px;
border: 0ch;
}
img {
border-radius: 20px;
}
.wikipediaImg {
height: 300px;
}
</style>
</head>
<body>
<header>
<h1>DEAR WITH BLOG</h1>
</header>
<section>
<h1>Scratchについて</h1>
<img src="https://upload.wikimedia.org/wikipedia/commons/f/f4/New_Scratch_screenshoot_ja.jpg" class="wikipediaImg">
<p>
Scratchは、世界最大の子ども向けコーディングコミュニティーで、若者がデジタルな物語、ゲーム、アニメーションを作るために使っている、シンプルなビジュアルインターフェースを持ったコーディング言語です。Scratchは非営利団体Scratch財団によって設計、開発、維持されています。
Scratchは、計算論的思考と問題解決のスキル、創造的な教育と学習、自己表現と協調、そしてコンピュータ利用における公平性を促進します。
Scratchは完全に無料で、70以上の言語で利用可能です。
</p>
</section>
<footer>
<p>©Dear With Blogs|By Dear With</p>
</footer>
</body>
</html>