forked from akshu20791/php-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
58 lines (53 loc) · 1.79 KB
/
index2.html
File metadata and controls
58 lines (53 loc) · 1.79 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>One Piece Home Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<nav class="navbar">
<div class="container">
<a href="#" class="logo">MyWebsite</a>
<ul class="nav">
<li><a href="#home">Home</a></li>
<li><a href="#about">Characters</a></li>
<li><a href="#services">Fights</a></li>
<li><a href="#contact">LorePiece</a></li>
</ul>
</div>
</nav>
<div class="hero" id="home">
<h1>Welcome to My One Piece project Homepage</h1>
<p>Experience the One Piece life</p>
<a href="#about" class="btn">Learn More</a>
</div>
</header>
<section class="section" id="about">
<div class="container">
<h2>About Us</h2>
<p>We are at the center of the One Piece Manga news and more.</p>
</div>
</section>
<section class="section" id="services">
<div class="container">
<h2>Our Services</h2>
<p>We offer a wide range of services to meet your needs.</p>
</div>
</section>
<section class="section" id="contact">
<div class="container">
<h2>Contact Us</h2>
<p>Get in touch with us trough Twitter for more information Username : @lixogram.</p>
</div>
</section>
<footer class="footer">
<div class="container">
<p>© 2024 MyWebsite. All rights reserved.@lixogram</p>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>