-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dasar Design Grafis</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="h1">Belajar HTML & CSS</h1>
<h5 class="h5">SMK Kristen Immanuel Pontianak</h5>
</header>
<section class="section1">
<div>
<h1>HTML <i class="fa fa-html5"></i></h1>
<h5 class="margin">The language for building web pages</h5>
<a href="#" class="learn1">Learn HTML</a>
<a href="#" class="learn2">HTML Reference</a>
</div>
<div>
<img src="https://images.pexels.com/photos/1036841/pexels-photo-1036841.jpeg?auto=compress&cs=tinysrgb&dpr=2&w=500" alt="" style="width:450px;">
</div>
</section>
<section class="section2">
<div>
<img src="https://images.pexels.com/photos/205316/pexels-photo-205316.png?auto=compress&cs=tinysrgb&dpr=2&w=500" alt="" style="width:450px;">
</div>
<div>
<h1>CSS <i class="fa fa-css3"></i></h1>
<h5 class="margin">The language for styling web pages</h5>
<a href="#" class="learn1">Learn CSS</a>
<a href="#" class="learn2">CSS Reference</a>
</div>
</section>
<footer>
<span>w3schools.com</span>
</footer>
</body>
</html>