-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
134 lines (118 loc) · 3.89 KB
/
about.html
File metadata and controls
134 lines (118 loc) · 3.89 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | TemplatesBuilder</title>
<style>
/* Simple, clean styling */
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
max-width: 1000px;
margin: 0 auto;
padding: 20px;
background-color: #f9f9f9;
}
header {
text-align: center;
padding: 30px 0;
background-color: #4a6cf7;
color: white;
border-radius: 8px;
margin-bottom: 30px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
h2 {
color: #4a6cf7;
margin: 25px 0 15px;
font-size: 1.8rem;
}
.feature-box {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
margin-bottom: 20px;
}
.feature-icon {
font-size: 2rem;
color: #4a6cf7;
margin-bottom: 10px;
}
.mission-statement {
background: #eef4ff;
padding: 30px;
border-radius: 8px;
margin: 30px 0;
text-align: center;
font-size: 1.1rem;
}
footer {
text-align: center;
margin-top: 50px;
padding: 20px;
color: #666;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header>
<h1>About TemplatesBuilder</h1>
<p>Creating websites for everyone - no coding needed!</p>
</header>
<div class="mission-statement">
<h2>Our Mission</h2>
<p><strong>"To empower complete beginners to create professional websites without writing a single line of code."</strong></p>
<p>We believe everyone deserves an online presence, regardless of technical skills.</p>
</div>
<h2>Why Choose Our Builder</h2>
<div class="feature-box">
<div class="feature-icon">
<i class="fas fa-magic"></i>
</div>
<h3>Zero Coding Required</h3>
<p>website creation as easy as using a word processor. No programming knowledge needed!</p>
</div>
<div class="feature-box">
<div class="feature-icon">
<i class="fas fa-clock"></i>
</div>
<h3>Get Online in Minutes</h3>
<p>Choose a template, customize with your content.</p>
</div>
<div class="feature-box">
<div class="feature-icon">
<i class="fas fa-mobile-alt"></i>
</div>
<h3>Mobile-Friendly Designs</h3>
<p>All our templates automatically look great on computers.</p>
</div>
<div class="feature-box">
<div class="feature-icon">
<i class="fas fa-life-ring"></i>
</div>
<h3>Beginner-Friendly Support</h3>
<p>We explain everything in simple terms with step-by-step guides and video tutorials.</p>
</div>
<h2>Who We Help</h2>
<ul>
<li>Artists and creatives showcasing their work</li>
<li>Parents making family websites</li>
<li>Students creating project pages</li>
<li>Anyone who's ever been frustrated by complicated website builders</li>
</ul>
<div class="mission-statement">
<h2>Our Promise</h2>
<p>"We'll never use technical jargon. We'll never assume you know what 'HTML' means. We'll help you create a website you're proud of - the easy way."</p>
</div>
<footer>
<p>© 2023 TemplatesBuilder | Making the web accessible to everyone</p>
</footer>
</body>
</html>