-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
163 lines (151 loc) · 5.01 KB
/
index.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="HexUI Excercise">
<meta name="keywords" content="HTML,CSS,HTML_Excercise,UI Course,HEX UI">
<meta name="author" content="Vanodya Oshadhi">
<title>HexUI - HTML Excercise</title>
<link rel="icon" href="" type="image/gif" sizes="16x16">
<style>
body{
font-family:"arial";
margin: 30px;
font-size: 24px;
color: #777777;
padding: 12px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
p{
padding-top: 1.2%;
line-height: 1.4;
margin: 0;
}
h1{
color: #707070;
font-size: 40px;
margin-bottom: 0px;
}
input[type="submit"]{
background-color: white;
color: #000;
width:10%;
padding: 10px;
border: 1px solid grey ;
border-radius: 5px;
font-size: 22px;
font-weight: 700;
}
footer{
text-align: center;
}
/* unvisited link */
a:link {
text-decoration: none;
color: inherit;
}
/* visited link */
a:visited {
color: inherit;
}
/* mouse over link */
a:hover {
color: white;
background-color: black;
}
/* selected link */
a:active {
color: grey;
}
table, td, th {
border: 2px solid grey;
text-align: left;
vertical-align: top;
}
th,td{
padding:35px;
}
th{
font-size: 40px;
}
table {
border-collapse: collapse;
width: 100%;
}
</style>
<!-- <base href="http://theteamhex.com/" target="_blank"> -->
</head>
<body>
<header>
<svg width="30%" height="150px">
<rect width="100%" height="100%" style="fill:rgb(255, 255, 255);stroke-width:2;stroke:grey;"></rect>
<text x="195" y="90" fill="grey" >Logo</text>
</svg>
<!-- <img src="https://static.rfstat.com/renderforest/images/v2/general-homepage/rf_logo_new_colors.svg" style="width:25%;border:1px solid;" alt="Logo of Website"> -->
</header>
<br>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Works</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">News</a></li>
</ul>
</nav><br>
<span style="width:25%">
<h1>Adventures in creative age</h1>
<p>We believe that designing products and services in close
<br> partnership with our clients is the only way to have a real<br>
impact on their business.</p>
</span>
<br>
<div>
<h1>About Our Agency</h1>
<p>We help our clients succeed by creating brand identities, digital experiences, and print materials that communicate clearly, achieve marketing goals, and look fantastic. </p>
<br>
<table>
<tr>
<th colspan="2">Newest Technology
</th>
</tr>
<tr>
<th rowspan="2">Attention to Details</th>
<td >Produce the highest quality work and services for every client, on every project</td>
</tr>
<tr>
<td>Produce the highest quality work and services for every client, on every project</td>
</tr>
</table>
</div>
<br><br>
<div>
<h1>Let's create something extraordinary</h1>
<br>
<form action="#" method="GET" autocomplete target="_blank" style="width: 100%;">
Full Name
<br>
<input type="text" placeholder="" required style="width: 100%; padding: 20px; font-size:22px;margin-top:10px;border: 2px solid grey;">
<br><br><br>
Email
<br>
<input type="email" placeholder="" required style="width: 100%; padding: 20px; font-size:22px;margin-top:10px;border: 2px solid grey;">
<br><br><br>
<input type="submit" value="Contact Us">
</form>
</div>
<br><br>
<footer>
<hr><br><br>
© 2019. All Rights Reserved.
<br> <br>
</footer>
</body>
</html>