-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (45 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vertical Scrolling One-Page Website</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav>
<ul>
<li><a href="#section1">Section 1</a></li>
<li><a href="#section2">Section 2</a></li>
<li><a href="#section3">Section 3</a></li>
</ul>
</nav>
<section id="section1" style="background-color: #f8bbd0">
<img
src="https://2.bp.blogspot.com/-GU50s5Nbyfg/YFK14bvsxeI/AAAAAAAALcw/KrETjpZrYqwrRkpEaucCbDjPNeIS479hACK4BGAYYCw/s1600/fire.png"
width="100"
/>
<h1>Section 1 : kang-cahya.com</h1>
<!-- Content for Section 1 -->
</section>
<section id="section2" style="background-color: #e1bee7">
<img
src="https://2.bp.blogspot.com/-GU50s5Nbyfg/YFK14bvsxeI/AAAAAAAALcw/KrETjpZrYqwrRkpEaucCbDjPNeIS479hACK4BGAYYCw/s1600/fire.png"
width="100"
/>
<h1>Section 2 : kang-cahya.com</h1>
<!-- Content for Section 2 -->
</section>
<section id="section3" style="background-color: #bbdefb">
<img
src="https://2.bp.blogspot.com/-GU50s5Nbyfg/YFK14bvsxeI/AAAAAAAALcw/KrETjpZrYqwrRkpEaucCbDjPNeIS479hACK4BGAYYCw/s1600/fire.png"
width="100"
/>
<h1>Section 3 : kang-cahya.com</h1>
<!-- Content for Section 3 -->
</section>
<!-- Add more sections as needed -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
</body>
</html>