-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.html
More file actions
89 lines (72 loc) · 2.49 KB
/
welcome.html
File metadata and controls
89 lines (72 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Welcome</title>
<!--<link rel="stylesheet.css" href="./css/welcome.css">-->
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<h1 class="fancy-header">Welcome to Veridian Dynamics!</h1>
<p>At Veridian Dynamics, <strong>we</strong> solve <em>your</em> problems with <strong><em>technology.</em></strong></p>
</div>
<hr>
<h2 class="section-header">Core Values</h2>
<ul class="bullet-style">
<li>Competence</li>
<li>Involvement</li>
<li>Technology</li>
</ul>
<h2 class="section-header">Our Process</h2>
<ol>
<li>Plan</li>
<li>Evaluate</li>
<li>Implement</li>
</ol>
<h2 class="section-header">2020 Vision</h2>
<ul class="bullet-style">
<li>Become #1 in Technology</li>
<li>Increase Success by 20%</li>
<li>Increase Business by 30%</li>
</ul>
<hr>
<h2 class="section-header">Company Vision</h2>
<table>
<tr>
<th><img src="./img/pexels-egor-kamelev-754100.jpg" alt="Chameleon gasping" height="500px"></th>
<th><img src="./img/pexels-egor-kamelev-754104.jpg" alt="Chameleon staring" height="500px"></th>
</tr>
<tr>
<th><img src="./img/pexels-tayla-walsh-2825907.jpg" alt="Chameleon looking forward" height="500px"></th>
<th><img src="./img/pexels-cmonphotography-1809624.jpg" alt="Chameleon in fog" height="500px"</th>
</tr>
</table>
<h2 class="section-header">Our Product</h2>
<table class="text">
<tr>
<th class="plan"><strong>Plan</strong></th>
<th class="plan"><strong>Price</strong></th>
<th class="plan"><strong>Features</strong></th>
</tr>
<tr>
<td class="plan">Starter</td>
<td class="plan">$99</td>
<td class="plan">Base Technology</td>
</tr>
<tr>
<td class="plan">Advanced</td>
<td class="plan">$199</td>
<td class="plan">Additional Features</td>
</tr>
<tr>
<td class="plan">Premium</td>
<td class="plan">$499</td>
<td class="plan">Unlimited Support</td>
</tr>
</table>
<br>
<p><em>All products come with our quality guarantee™</em>.</p>
<a href="#top"><strong>Go to the top of page.</strong></a>
</body>
</html>