-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
71 lines (59 loc) · 1.8 KB
/
index2.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
<!-- FILEPATH: /Users/mahmutguney/ecobalance/Cloud-Satellite-ML/src/html-css-bootstrap/index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Personal Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>Personal Blog</h1>
</div>
</header>
<nav>
<div class="container">
<ul>
<li><a href="#home" onclick="loadContent('home')">Home</a></li>
<li><a href="#about" onclick="loadContent('about')">About</a></li>
<li><a href="#services" onclick="loadContent('services')">Services</a></li>
<li><a href="#contact" onclick="loadContent('contact')">Contact</a></li>
</ul>
</div>
</nav>
<!-- default content is home, others will be loaded by clicking on the links -->
<section id="home" class="active">
<div class="container">
<h2>Home</h2>
<p>Welcome to my blog</p>
</div>
</section>
<section id="about" class="inactive">
<div class="container">
<h2>About</h2>
<p>My name is John Doe and I am a web developer</p>
</div>
</section>
<section id="services" class="inactive">
<div class="container">
<h2>Services</h2>
<p>Here are the services I offer</p>
</div>
</section>
<section id="contact" class="inactive">
<div class="container">
<h2>Contact</h2>
<p>You can contact me at 555-555-5555</p>
</div>
</section>
<footer>
<div class="container">
<p>© 2019 Personal Blog</p>
</div>
</footer>
<script src="main.js"></script>
<script>
</script>
</body>
</html>