-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (115 loc) · 4.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Smart City</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<meta name="author" content="Luís Rita">
<link rel="icon" href="./img/Smarty.png">
<style>
body,pre{
font-family: "Raleway", sans-serif;
}
.container2 {
width:100%;
margin:auto;
padding: 0;
overflow:hidden;
text-align: center;
}
footer{
padding:1px;
margin-top:0;
color:#ffffff;
background-color: #000000;
text-align: center;
position: absolute;
top: 94.5%;
width: 100%;
}
footer p{
float: left;
width: 50%;
margin-left: 25%;
}
.button {
display: block;
text-align: center;
color: black;
width: 15%;
min-width: 200px;
font-size: 30px;
border: 3px solid black;
border-bottom-style: solid;
background: none;
cursor: pointer;
}
.button:hover {
display: block;
text-align: center;
color: white;
width: 15%;
min-width: 200px;
font-size: 30px;
background-color: black;
cursor: pointer;
box-shadow: 2px 4px 18px #888888;
}
a {
text-decoration: none;
color: white;
}
#smarMT, #smarTV{
box-shadow: 2px 4px 18px #888888;
margin-bottom: 5%;
background-color: #ffffff;
}
#smarTV:hover, #smarMT:hover {
box-shadow: 8px 16px 72px #888888;
text-align: center;
margin-top: 2%;
}
</style>
</head>
<!-- ------------------------------------------Header------------------------------------------ -->
<body style="margin: 0 0 0 0;background-size: cover; background-image: url('./img/cityy.jpg'); background-size: cover">
<div style="border-style: dashed; border-color: transparent; width: 0%; float: left; margin-top: 14px; margin-left: 47%;">
<a href="index.html">
<img src="./img/Smarty2.png" width="100">
</a>
</div>
<div style="padding-top: 20px; padding-right:450px; height: 90px; margin-top:0; background-color: black; text-align: center;color: white;font-size: 25px"> <a href="index.html" style="cursor: pointer;"></a> </div>
<!-- ------------------------------------------Main Container------------------------------------------ -->
<!-- App -->
<div style="padding: 50px;position: relative;border-bottom-style: none;">
<div style="float: right;">
<a href="SmartTV.html">
<img id = "smarTV" src="./img/SmarTV.png" style="position:absolute; right: 10%; top: -5%; width: 35%; display: block; margin-top: 100px; border-radius: 25px;">
</a>
<a href="SmartMT.html">
<img id = "smarMT" src="./img/smarMT.png" style="position:absolute; right: 55%; top: -5%;width: 37%; display: block; margin-top: 100px;border-radius: 25px;">
</a>
</div>
<a href="5G.html">
<button class="button" src = "5G.html" style="background-color: black; color: white; position:absolute; bottom:-660px;left: 42.5%;">5G</button>
</a>
</div>
<!-- ------------------------------------------Footer------------------------------------------ -->
<footer>
<div class="container2">
<p>© Copyright 2018 – Smarty</p>
<div id = "socialMedia">
<a href = "https://www.facebook.com/luis.rita.12?ref=bookmarks" target="_blank" rel="noopener noreferrer">
<img src = "./img/MediaIcons/facebook.png" width="25" style="margin-right: 1%; margin-top: 0.8%">
</a>
<a href = "https://www.linkedin.com/in/lu%C3%ADs-rita-750302122/" target="_blank" rel="noopener noreferrer">
<img src = "./img/MediaIcons/linkedin.png" width="25" style="margin-right: 1%; margin-top: 0.8%">
</a>
<a href = "https://www.youtube.com/channel/UCUJV1y666FRLzpOXu3O8wDw" target="_blank" rel="noopener noreferrer">
<img src = "./img/MediaIcons/youtube.png" width="25" style="margin-right: 1%; margin-top: 0.8%">
</a>
</div>
</div>
</footer>
</body>
</html>