-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (84 loc) · 3.16 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
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
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./main.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="belajar dom event">
<title>domevent</title>
</head>
<body>
<div class="modalMenu">
<span class="material-icons closeIcon" onclick="hideModal()">close</span>
<a href="#home" onclick="hideModal()">HOME</a>
<a href="#about" onclick="hideModal()">ABOUT</a>
<a href="#gallery" onclick="hideModal()">GALLERY</a>
<a href="#contact" onclick="hideModal()">CONTACT</a>
</div>
<nav class="navbar">
<h3 class="brand">JRG BALESHOF</h3>
<span class="material-icons menuIcon" onclick="showModal()"> menu </span>
</nav>
<main class="container">
<section class="home" id="home">
<img src="./photo_profile.jpeg" alt="" class="heroImage">
<h1 class="heroText">
<span style="color : orange;">WEB</span> PROFILE <br /> <span style="
font-size: 12rem;
">JRG BALESOF<span />
</h1>
</section>
<section class="about" id="about">
<div class="aboutAlert">
Selamat datang di web sederhana saya ini
<span class="material-icons alertClose" onclick="closeAlert()">close</span>
</div>
about
</section>
<section class="gallery" id="gallery">
<span class="material-icons galIcon">
motion_photos_paused
</span>
</section>
<section class="contact" id="contact">contact</section>
</main>
<footer class="footer">
<div class="left">
<h3>site map</h3>
<a href="#home">home</a>
<a href="#about">about</a>
<a href="#contact">contact</a>
<a href="#gallery">gallery</a>
</div>
<div class="right">
<div class="col1">
<div class="formGroup">
<label for="name">Nama</label>
<input type="text" name="name" id="name">
</div>
<div class="formGroup">
<label for="phone">Wa Number</label>
<input type="phone" name="phone" id="phone">
</div>
<div class="formGroup">
<label for="email">email</label>
<input type="email" name="email" id="email">
</div>
</div>
<div class="col2">
<div class="formGroup">
<label for="message">pesan</label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
</div>
<div class="formGroup">
<button class="kirim">
kirim pesan
</button>
</div>
</div>
</div>
</footer>
<script src='./main.js'></script>
</body>
</html>