-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
125 lines (124 loc) · 3.28 KB
/
contacts.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>IT-Оптимизация</title>
<link rel="stylesheet" href="style.css">
<!--[if lt IE 9]>
<script src="html5.js">
</script>
<![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-16529146-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="main">
<header>
<h1>IT-Oптимизация</h1>
</header>
<nav>
<ul>
<li><a href="index.html">О нас</a></li>
<li><a href="attendence.html">Услуги</a></li>
<li class="active"><a href="contacts.html">Контакты</a></li>
</ul>
</nav>
<section>
<article>
<table>
<tbody>
<tr>
<td>
<b>Алексей:</b>
</td>
<td>
<a href="alexey.html">(резюме)</a>,
</td>
<td>
<b>тел.:</b>
+38(067) 402-94-47,
</td>
<td>
<b>e-mail:</b>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
<tr>
<td>
<b>Виталий:</b>
</td>
<td>
<a href="vitaly.html">(резюме)</a>,
</td>
<td>
<b>тел.:</b>
+38(098) 494-61-64,
</td>
<td>
<b>e-mail:</b>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
<tr>
<td>
<b>Вячеслав:</b>
</td>
<td>
<a href="vyacheslav.html">(резюме)</a>,
</td>
<td>
<b>тел.:</b>
+38(097) 388-18-02,
</td>
<td>
<b>e-mail:</b>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
<tr>
<td>
<b>Сергей:</b>
</td>
<td>
<a href="sergey.html">(резюме)</a>,
</td>
<td>
<b>тел.:</b>
+38(067) 400-41-11,
</td>
<td>
<b>e-mail:</b>
<a href="mailto:[email protected]"> [email protected]</a>
</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td>
<b>Задать нам вопрос:</b>
</td>
<td>
<b>e-mail:</b>
<a href="mailto:[email protected]">[email protected]</a>
</td>
</tr>
</tbody>
</table>
</article>
</section>
<footer>
© 2008-<script type="text/javascript">document.write(new Date().getFullYear())</script> "IT-Оптимизация"
</footer>
</div>
</body>
</html>