Anime hub
Example heading with h2 size
Example heading with h3 size
Following is sample java code.
int i = 10;
if(i>0){
System.out.println('positive');
}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>AnimeHub News</title>
<style>
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
text-align: center;
padding: 20px;
}
h1 {
font-size: 36px;
}
p {
font-size: 18px;
line-height: 1.5;
padding: 0 20px;
}
</style>
</head>
<body>
<header>
<h1>AnimeHub News</h1>
</header>
<section>
<h2>Latest Anime News</h2>
<p>Stay updated with the latest news and updates on your favorite anime and manga series from around the world.</p>
</section>
<section>
<h2>Upcoming Anime and Manga</h2>
<p>Get a sneak peek at upcoming anime and manga releases, so you don't miss out on any of your favorite series.</p>
</section>
<footer>
<p>© 2023 AnimeHub News</p>
</footer>
</body>
</html>