-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersonal-website.html
57 lines (50 loc) · 2.71 KB
/
personal-website.html
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="../stylesheets/blog.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<title>Bill's Technical Blog: Building a Personal Website</title>
</head>
<body>
<div class="outer-div">
<div class="inner-left">
<aside id="sidebar-fixed">
<ul class="buttons-ul">
<li><a href="index.html"><i class="fa fa-bars"></i><br>Blog Page</a></li>
<li><a href="../index.html"><i class="fa fa-home"></i><br>Home Page</a></li>
<li><a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook-official"></i><br>Facebook</a></li>
<li><a href="https://twitter.com/" target="_blank"><i class="fa fa-twitter-square"></i><br>Twitter</a></li>
</ul>
</aside>
</div>
<div class="inner-right">
<main>
<h1>Building a Personal Website</h1>
<p>
April 9, 2016
</p>
<section>
<p>
Building a personal website was fun and challenging at the same time. You could make a simple website
or a fancy website depending on how much time and energy you want to put into it. What I enjoyed the most
was making my site mobile responsive. It took a long time and it was challenging because I didn't know
how to do it so I had to research, learn and implment what I've learned.
</p>
<p>
I think CSS positioning was the hardest challenge of making a website because we can design a beautiful
site but if things aren't positioned right, it messes up the whole page, text gets cut off, images aren't centered,
etc.
</p>
<p>
Besides learning about mobile responsive, I also learned about wireframing, using Chrome DevTools, linking up
CSS to a HTML page and HTML5 semantics. It was a fun journey.
</p>
</section>
</main>
</div>
</div>
</body>
</html>