forked from AnthonyParkerJr/HTML-CSS-Pair-Programming-Lab-1
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpair_programing.html
More file actions
178 lines (110 loc) · 2.19 KB
/
pair_programing.html
File metadata and controls
178 lines (110 loc) · 2.19 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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html>
<head>
<style>
.sidenav {
height: 100%;
width: 160px;
position: fixed;
z-index: 1;
top: 0;
right: 0;
background-color: #D9D9D9;
overflow-x: hidden;
padding-top: 50px;
}
.sidenav a {
padding: 1px 8px 1px 16px;
text-decoration: none;
font-size: 25px;
color:#FF6600;
display: block;
}
.sidenav a:hover {
color: #F1F1F1;
}
.main {
margin-left: 10px; /* Same as the width of the sidenav */
font-size: 28px; /* Increased text to enable scrolling */
padding: 0px 10px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
h1 {
color:#FF6600;
font-family: verdana;
font-size: 40px;
background-color:#262626;
text-align: center;
}
h6 {
color: white;
font-family: courier;
font-size: 15px;
background-color:#262626;
text-align: center;
}
h2 {
font-size: 66px;
}
footer {
margin-top: 559px;
}
h5{
text-align: left;
font-size: 26px;
}
ul{
font-size: 21px;
}
p{
font-size: 40px;
}
</style>
<title>Dream Team</title>
</head>
<header>
<h1>
My Dream Team Website
</h1>
<h2>
This is a Dream Team Heading
<img src="image.png" alt="Thegang" style="float:left;widows: 250px;height:250px; padding-right: 21px;"
>
</h2>
<p>
"Isthay isway ethay eamdray Eam'stay ebsiteway"
</p>
<h3>
<p>
<a href="#">
Read More
</a>
</p>
</h3>
</header>
<body >
<div class="sidenav">
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#clients">Clients</a>
<a href="#contact" >Contact</a>
<h5>
Brought to you by the Dream Team
</h5>
<ul>
<li>Antoinette</li>
<li>Jordan</li>
<li>Matt</li>
<li>Peter</li>
</ul>
</div>
<footer>
<h6>
Copyright <a href="#">YourSite </a>. All rights reserved.
</h6>
</footer>
</body>
</html>