-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtugas3.html
74 lines (43 loc) · 1.84 KB
/
tugas3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Complete Responsive Personal Portfolio Website Tutorial</title>
<link rel="stylesheet" href="fonts/font-awesome.css">
<link rel="stylesheet" href="fonts/google-fonts.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- header section starts -->
<header class="header fixed-top">
<a href="index.html" class="logo">
<h1>Portfolio.</h1>
</a>
<div class="fas fa-bars"></div>
<nav class="navbar">
</nav>
</header>
<!-- header section ends -->
<!-- home section starts -->
<!-- home section ends -->
<!-- about section starts -->
<section id="about" class="container about">
<div class="heading">tugas arduino</div>
<div class="row align-items-center justify-content-around">
<div class="col-md-8 text-center text-md-left info">
<img src="images/code1.jpg" style="height: 70%; width: 70%;" alt="">
<h2>script</h2>
<p>#include
<LiquidCrystal.h>
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); void setup() { // set up the LCD's number of columns and rows: lcd.begin(20, 3); // Print a message to the LCD. lcd.print(" hello, world!"); } void
loop() { // Turn off the display: lcd.noDisplay(); delay(500); // Turn on the display: lcd.display(); delay(500); }
</p>
</div>
</div>
</section>
<!-- about section ends -->
<!-- service section starts -->
</body>
</html>