-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRust.html
62 lines (55 loc) · 1.54 KB
/
Rust.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Rust Development - SwiftPeakDevelopment</title>
<style>
/* CSS styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #222;
color: #fff;
line-height: 1.6;
}
header {
text-align: center;
padding: 20px 0;
}
h1 {
font-size: 2em;
}
main {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
section {
margin-bottom: 40px;
padding: 20px;
border-radius: 8px;
background-color: rgb(31, 41, 55);
}
h2 {
font-size: 1.5em;
margin-bottom: 10px;
color: rgb(110, 231, 183);
}
section p {
color: #ccc;
}
</style>
</head>
<body>
<header>
<h1>About Rust Development at SwiftPeakDevelopment</h1>
</header>
<main>
<section class="rust-section">
<h2>Meet Our Rust Development Team</h2>
<p>Our Rust development team comprises dedicated individuals with a profound understanding of the Rust environment. With a wealth of experience and gameplay insight, they craft tailored solutions and enhancements for an enriched Rust gaming experience.</p>
</section>
</main>
</body>
</html>