-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAbout Me.html
More file actions
147 lines (135 loc) · 3.11 KB
/
About Me.html
File metadata and controls
147 lines (135 loc) · 3.11 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
<!doctype html>
<html>
<head>
<title>About Me</title>
<style type="text/css">
header {
background-color: blue;
color: #FFFFFF;
width: 100%;
margin: 0px;
padding: 0px;
height: 70px;
}
body {
margin: 0px;
height: 600px;
background-image: url("chicago-cubs-logo");
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
}
#content {
background-color: white;
width: 900px;
height: 200%;
margin: auto;
}
aside {
float: left;
border: solid 1px black;
height: 500px;
width: 100px;
}
#sidebar_image {
width: 75px;
height: 75px;
border-radius: 50%;
border: solid 2px black;
transform: translate(0px, -50%);
margin-bottom: -30px;
margin-left: auto;
margin-right: auto;
}
a {
font-family: "Arial", sans;
text-decoration: none;
margin-bottom: 10px;
margin-right: 5px;
margin-left: 5px;
display: block;
}
a:hover{
text-decoration: underline;
}
section {
border: solid 1px black;
border-top-right-radius: 0px;
border-top-left-radius: 0px;
border-radius: 7px;
margin-left: 110px;
margin-right: 8px;
margin-bottom: 7px;
padding-left: 7px;
padding-right: 7px;
padding-top: 0px;
}
.post_title {
margin: 0px;
background-color: #f44242;
margin-left: -7px;
margin-right: -7px;
overflow: hidden;
padding: 5px;
font-family: "Arial", Sans;
}
.byline {
margin: 2px;
}
.post_content{
text-align: justify;
}
.post_image {
height: 100px;
float: right;
margin-left: 10px;
margin-bottom: 5px;
}
#title_text {
position: abosolute;
top: 25px;
left: 200px;
font-family: "Arial", Sans;
font-size: 2em;
}
#subheader_text {
padding-top: 3px;
padding-bottom: 10px;
margin-left: 115px;
text-align: center;
}
</style>
</head>
<body background="chicago-cubs-logo.jpg">
<header>
<div id="title_text">Eric Viohl</div>
</header>
<div id="content">
<aside>
<img id="sidebar_image" src="pc-clipart.jpg">
<a href="About Me.html">Home</a>
<a href="Contact.html">Contact</a>
<div style="position: absolute; bottom: 0px">©2017</div>
</aside>
<article>
<div id="subheader_text">A blog about Me</div>
<section>
<h3 class="post_title">A little about Myself as a Programmer</h3>
<h5 class="byline">By Eric</h5>
<img class="post_image" src="boba fett.jpg">
<p class="post_content">
I am striving to become a web developer or at least a test engineer so that I can gain experience in programming. I'm still working harnessing my skills as a programmer and will work towards being the best programmer I can be as time continues.
</p>
</section>
<section>
<h3 class="post_title">Sports</h3>
<h5 class="byline">By Eric </h5>
<img class="post_image" src="discord.jpg">
<p class="post_content">
I have hobbies and activities that I like to do in my spare time, one of which is sports. I mainly play golf but I will play others such as tennis, basketball, and bowling.
</p>
</section>
</article>
</div>
</body>
</html>