-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (56 loc) · 1.5 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
<!-- 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">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<section id="home">
<div class="container">
<h2>Home</h2>
<p>Welcome to my blog</p>
</div>
</section>
<section id="about">
<div class="container">
<h2>About</h2>
<p>My name is John Doe and I am a web developer</p>
</div>
</section>
<section id="services">
<div class="container">
<h2>Services</h2>
<p>Here are the services I offer</p>
</div>
</section>
<section id="contact">
<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>
</body>
</html>