-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (93 loc) · 2.14 KB
/
index.html
File metadata and controls
96 lines (93 loc) · 2.14 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
90
91
92
93
94
95
96
<!DOCTYPE HTML>
<html>
<style>
@font-face{
font-family: Hewitt;
src: url("font/cooperhewitt-light.otf");
}
img {
margin-top: 20%;
}
/* * {
font-family: Hewitt;
} */
/*
.tab button:hover {
background-color: #ddd;
}
.tab {
overflow: hidden;
border: 2px solid #ffffff;
background-color: #f1f1f1;
}
.tablinks{
font-size:150%
}
.tab button.active {
background-color: #ccc;
}
.tab button {
background-color: inherit;
float: right;
border: none;
outline: none;
cursor: pointer;
padding: 28px 32px;
transition: 0.7s;
}
*/
.header {
color: rgba(255, 255, 255, 0.4);
font-size: 4em;
text-align: center;
margin-top: 15%;
}
body {
background-image: url("img/test.jpg");
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.logo {
text-align: center;
margin-top: 16%;
margin-left: auto;
margin-right: auto;
}
</style>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
<title>NRG</title>
</head>
<!-- Navigation Bar -->
<!--
<div class="sticky">
<div class="tab">
<a href="index.html"><img src="img/testlogo.png" style="margin-left: 2%; width:5%; margin-top: 1.5%"></a>
<button class="tablinks" onclick="window.location.href='test.html'">Calendar</button>
<button class="tablinks" onclick="">Photos</button>
<button class="tablinks" onclick="">Registration</button>
<button class="tablinks" onclick="">About Us</button>
<button class="tablinks navtest" onclick="">Home</button>
</div>
</div>
-->
<!-- Dropdown Nav Bar -->
<!-- <ul>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbutton"><img src="img/nav.png" width="100%"></a>
<div class="dropdown-content">
<a href="#">Home</a>
<a href="#">Photos</a>
<a href="#">Registration</a>
<a href="#">About Us</a>
</div>
</li>
</ul> -->
<!-- Main Header -->
<div class="header">
<h1>Newport Robotics Group</h1>
<h2 style="color: black">Work in Progress...</h2>
</div>
</html>