-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-CSS2-COMPLETE.html
More file actions
162 lines (144 loc) · 3.28 KB
/
index-CSS2-COMPLETE.html
File metadata and controls
162 lines (144 loc) · 3.28 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
<!DOCTYPE html>
<html>
<head>
<!-- comment -->
<title>Brittney Miles</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<style>
body {
background-image: url("circles-and-roundabouts.png");
background-repeat: repeat;
font-family: Times New Roman, serif;
}
#page-title {
font-style: italic;
color: #004477;
padding: 20px;
font-weight: bold;
}
h1, h2, h3 {
background-color: lightgray;
border-top: 1px solid black;
border-bottom: 1px solid black;
}
p.text-content {
background-color: rgba(255, 255, 255, 0.8);
padding: 10px;
margin-bottom: 20px;
max-width: 800px;
width: 80%;
line-height: 150%
}
h2 {
text-align: center;
color: hotpink;
margin-top: 10px;
margin-bottom: 10px;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
.content {
background-color: white;
margin-left: 15%;
margin-right: 15%;
padding: 10px;
width: 70%;
}
table, td, th {
border: 2px solid black;
border-collapse: collapse;
}
table {
width: 80%;
margin-right: 10%;
margin-left: 10%;
}
td, th {
padding: 4px;
text-align: center;
}
li {
list-style-type: circle;
}
#pos-div {
position: relative;
text-align: center;
margin: auto;
width: 100%;
}
#photo-text {
position: absolute;
bottom: 125px;
right: 10%;
}
#footer {
width: 100%;
height: 30px;
color: white;
background: #777777;
margin-top: 10px;
position: fixed;
bottom: 0px;
}
#foot {
float: right;
margin-right: 15%;
}
</style>
</head>
<body>
<h1 id='page-title'>Palo Alto Brittney Miles Fan Club</h1>
<div class="content">
<h2>About</h2>
<div id="pos-div">
<p class='text-content' id="photo-text">This is our fan page. Lorem ipsum dolor sit amet, consectetur adipiscing
elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt
in culpa qui officia deserunt mollit anim id est laborum.</p>
<a href="http://www.brittneymiles-jazzpopfusion.com">Brittney Miles</a>
<img src="campfire.jpg" title="our hearts are on fire for Brittney"/>
</div>
<h2> Meeting Schedule</h2>
<table>
<tr>
<th>Event</th>
<th>Date</th>
</tr>
<tr>
<td>Concert</td>
<td>12-06-2017</td>
</tr>
<tr>
<td>Autograph Signing</td>
<td>12-07-2017</td>
</tr>
</table>
<h2> Members </h2>
<ol>
<li>
Charlotte
</li>
<li>
Ivana
</li>
<li>
Tiauna
</li>
<li>
Kim
</li>
<li>
Maryel
</li>
</ol>
</div>
<div id='footer'>
<div id="foot">WCC 2018</div>
</div>
</body>
</html>