-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
119 lines (99 loc) · 3.46 KB
/
project.html
File metadata and controls
119 lines (99 loc) · 3.46 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang= "en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
}
.header_name {
padding: 10px;
text-align: center;
background: #8f8e96;
color: white;
}
.navbar{
overflow: hidden;
background-color: #333;
position: sticky;
position: -webkit-sticky;
top: 0;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.navbar a.active {
background-color: #666;
color: white;
}
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
.navbar a.right {
float: right;
}
.image1{
float: right;
padding: 10px;
}
.teamUpdate{
float: left;
flex-flow: colum nowrap;
columns: 1000px 1;
}
</style>
</head>
<body>
<div class = "header_name">
<i style = "font-size: 130%;"> The Hexadecmials </i>
</div>
<div class = "navbar">
<a href="home"> Home </a>
<a href="project"> Current Progress</a>
<a href="donate"> Donate </a>
<a href="notebook"> Engineering notebook</a>
<a href="email"> Sign Up For Updates</a>
<a href="youtube"> Youtube Channel</a>
<a href="login" class = "right"> Login</a>
</div>
<!--
TEMPLATE
<div class = "teamUpdate">
<h1>Update INSERT DATE HERE:</h1>
<div class = "image1">
<img src = "" alt = "Update INSERT DATE HERE" style="width:400px;height:400px;">
</div>
<p> INSERT UPDATE HERE
<br> <br> <br> <br> <br> <br>
</p>
</div>
-->
<div class = "teamUpdate">
<h1>Update 10/11/2020:</h1>
<div class = "image1">
<img src = "https://user-images.githubusercontent.com/59454383/95693592-06d3f280-0be2-11eb-9452-8672783b9424.jpg" alt = "Update 10/11/20" style="width:400px;height:400px;">
</div>
<p> Features have been added to the site including, donate, enginnering
notebool, email sign up, and a login in page(still in progress and
only adming can log in for now). Other fetures are being worked on
but the design aspect is the main concern.
<br> <br> <br> <br> <br> <br>
</p>
</div>
<div class = "teamUpdate">
<h1>Update 10/9/2020:</h1>
<div class = "image1">
<img src = "https://user-images.githubusercontent.com/59454383/95645132-05cf8380-0a71-11eb-905e-0800005bea71.jpg" alt = "Update 10/9/20" style="width:400px;height:400px;">
</div>
<p> Website is being build.
<br> <br> <br> <br> <br> <br>
</p>
</div>
</body>
</html>