-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SigmaGamingStudios - Home</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<header>
<h1>SigmaGamingStudios</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="games.html">Games</a>
<a href="contact.html">Contact</a>
</nav>
<div class="container">
<h2>Welcome to SigmaGamingStudios</h2>
<p>At SigmaGamingStudios, we create immersive and engaging gaming experiences. Our team of passionate developers and designers work tirelessly to bring you the best in gaming entertainment.</p>
<button class="btn">Learn More</button>
</div>
<div class="games">
<div class="game-card">
<img src="https://via.placeholder.com/300x200" alt="Game 1">
<div class="game-card-content">
<h3>Game Title 1</h3>
<p>Experience the ultimate adventure with Game Title 1. A world of excitement awaits you.</p>
</div>
</div>
<div class="game-card">
<img src="https://via.placeholder.com/300x200" alt="Game 2">
<div class="game-card-content">
<h3>Game Title 2</h3>
<p>Get ready for an epic journey in Game Title 2. Challenges and fun are guaranteed.</p>
</div>
</div>
<div class="game-card">
<img src="https://via.placeholder.com/300x200" alt="Game 3">
<div class="game-card-content">
<h3>Game Title 3</h3>
<p>Join the action in Game Title 3. Discover new worlds and meet incredible characters.</p>
</div>
</div>
</div>
<div class="social">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
</body>
</html>