-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (77 loc) · 4.84 KB
/
index.html
File metadata and controls
86 lines (77 loc) · 4.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content=" FILL ME IN ">
<meta name="author" content=" FILL ME IN ">
<title>Cameron Pittman: Portfolio</title>
<!-- <link href="css/style.css" rel="stylesheet"> -->
<!-- <link href="css/print.css" media='print' rel="stylesheet"> -->
<!--Minified the CSS and added it inline-->
<!-- Used sprite images -->
<style type="text/css">
.hero,footer{border-top:1px solid #ccc}footer span,li p{font-style:italic}html{font-size:100%;overflow-y:scroll;-webkit-tap-highlight-color:transparent;-ms-text-size-adjust:100%;-webkit-text-size-adjust:none}body{margin:0;font-size:14px;line-height:1.61;font-weight:400;background:#fff}b,header p,strong{font-weight:700}body,button,input,select,textarea{font-family:'Open Sans',sans-serif;color:#333}a{color:#12C}a:visited{color:#61C}a:focus{outline:dotted thin}a:active,a:hover{color:#c00}code,pre{font-family:monospace,monospace;font-size:1em}ol,ul{margin:1em 0;padding:0 0 0 20px}i{border:0;max-width:100%;float:left}.container,footer,header{max-width:45em;margin:0 auto}header{padding:0 .5em;color:#C90B0B}header i{border-radius:40px}header p{font-size:1.5em;padding-left:4em}header p span{font-size:.8em;font-weight:400}.hero{padding:2em;background-color:#f8f8f8;font-size:1.2em;border-bottom:1px solid #ccc}.content{padding:1em}.content li{list-style-type:none;font-size:1.1em}li p{font-size:.9em}footer{padding:0 .5em}footer span{float:right}@media only screen and (max-width:480px){body{font-size:12px}header p{padding-left:4.5em}}.snap{width:100px}.sprite{background-image:url(img/spritesheet.png);background-repeat:no-repeat;display:block}.sprite-2048{width:100px;height:50px;background-position:-5px -5px}.sprite-familiarclass{width:100px;height:62px;background-position:-5px -65px}.sprite-mobiledev{width:100px;height:61px;background-position:-115px -5px}.sprite-pizzeria{width:100px;height:85px;background-position:-115px -76px}.sprite-profilepic{width:70px;height:70px;background-position:-225px -@media print{*{background:0 0!important;color:#000!important;text-shadow:none!important;filter:none!important;-ms-filter:none!important}a,a:visited{color:#444!important;text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}}
</style>
</head>
<body>
<header>
<i class="sprite sprite-profilepic"></i>
<p>Cameron Pittman<br><span>Course Developer</span></p>
</header>
<div class="container">
<div class="hero">
<strong>I love web development!</strong> This is a template for a simple portfolio. I decided to use it to showcase a few Udacity courses I've taken and some teaching work, but you can use it to showcase any kind of project that you want the world to see :) <br> Contact me: me@email.com
</div>
<div class="content">
<ul>
<li>
<i class="sprite sprite-2048"></i>
<a href="project-2048.html">Build Your Own 2048!</a>
<p>I made my own version of 2048. How cool is that!?</p>
</li>
<li>
<i class="sprite sprite-familiarclass"></i>
<a href="project-webperf.html">Website Performance Optimization</a>
<p>Hey... this class looks familiar.</p>
</li>
<li>
<i class="sprite sprite-mobiledev"></i>
<a href="project-mobile.html">Mobile Web Development</a>
<p>Making mobile apps isn't so hard after all.</p>
</li>
<li>
<i class="sprite sprite-pizzeria"></i>
<a href="views/pizza.html">Cam's Pizzeria</a>
<p>Who wants a performant pizza?</p>
</li>
</ul>
</div>
<footer>
<p>© Web Performance 2014 <span id="crp-stats"></span></p>
</footer>
</div>
<!-- Added webfonts to get the fonts dynamically instead of render blocking -->
<!-- <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script> -->
<script>
WebFontConfig = {
google: {
families: ['Open Sans']
}
};
(function(d) {
var wf = d.createElement('script'), s = d.scripts[0];
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js';
wf.async = true;s.parentNode.insertBefore(wf, s);
})(document);
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90944339-1', 'auto');ga('send', 'pageview');
</script>
<!-- Added async tag to stop it from affecting CRP since thisis just a analytics call -->
<script async src="https://www.google-analytics.com/analytics.js"></script>
<script async src="js/perfmatters.js"></script>
</body>
</html>