-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
144 lines (132 loc) · 4.83 KB
/
service.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
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
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
div style="background-color:bisque ;"><a href="index.html">home</a>
<a href="about.html">about</a>
<a href="contact.html">contact</a>
<a href="service.html">service</a>
<a href=>service</a>
<link rel="stylesheet" href="style.css">
</div>
<h3> Design & Development</h3>
<p>offer comprehensive web design and development services that are tailored
to meet the unique needs of your business. Our team of experienced designers
and developers work closely with you to create a website that not only looks
great but also functions seamlessly. We focus on creating a user-friendly
experience for your visitors, ensuring that your website is easy to navigate
and optimized for conversions.At BrandCurb, we take a collaborative approach
to every project, ensuring that we fully understand your business and your goals
before we begin. Whether you're looking to launch a new website or redesign an
existing one, we are here to help you achieve your online objectives. Contact us
today to learn more about our web design and development services and how we can help
your business succeed online.</p>
<div style="background-color:blueviolet;">frontend</div>
<div style="background-color: aqua;">backend</div>
<table border="5">
<caption>
Front-end web developer course 2021
</caption>
<thead>
<tr>
<th scope="col">Person</th>
<th scope="col">Most interest in</th>
<th scope="col">Age</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Chris</th>
<td>HTML tables</td>
<td>22</td>
</tr>
<tr>
<th scope="row">Dennis</th>
<td>Web accessibility</td>
<td>45</td>
</tr>
<tr>
<th scope="row">Sarah</th>
<td>JavaScript frameworks</td>
<td>29</td>
</tr>
<tr>
<th scope="row">Karen</th>
<td>Web performance</td>
<td>36</td>
</tr>
</tbody>
<tfoot>
<tr>
<th scope="row" colspan="2">Average age</th>
<td>33</td>
</tr>
</tfoot>
</table>
</head>
<body>
<div style="background-color:bisque ;"><a href="index.html">home</a>
<a href="about.html">about</a>
<a href="contact.html">contact</a>
<a href="service.html">service</a>
<a href=>service</a>
</div>
<h3> Design & Development</h3>
<p>offer comprehensive web design and development services that are tailored
to meet the unique needs of your business. Our team of experienced designers
and developers work closely with you to create a website that not only looks
great but also functions seamlessly. We focus on creating a user-friendly
experience for your visitors, ensuring that your website is easy to navigate
and optimized for conversions.At BrandCurb, we take a collaborative approach
to every project, ensuring that we fully understand your business and your goals
before we begin. Whether you're looking to launch a new website or redesign an
existing one, we are here to help you achieve your online objectives. Contact us
today to learn more about our web design and development services and how we can help
your business succeed online.</p>
<div style="background-color:blueviolet;">frontend</div>
<div style="background-color: aqua;">backend</div>
<table>
<caption>
Front-end web developer course 2021
</caption>
<thead>
<tr>
<th scope="col">Person</th>
<th scope="col">Most interest in</th>
<th scope="col">Age</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Chris</th>
<td>HTML tables</td>
<td>22</td>
</tr>
<tr>
<th scope="row">Dennis</th>
<td>Web accessibility</td>
<td>45</td>
</tr>
<tr>
<th scope="row">Sarah</th>
<td>JavaScript frameworks</td>
<td>29</td>
</tr>
<tr>
<th scope="row">Karen</th>
<td>Web performance</td>
<td>36</td>
</tr>
</tbody>
<tfoot>
<tr>
<th scope="row" colspan="2">Average age</th>
<td>33</td>
</tr>
</tfoot>
</table>
</body>
</html>