Skip to content

Commit f457107

Browse files
authored
yo
1 parent 99f67c6 commit f457107

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed

index.html

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta name="description" content=" FILL ME IN ">
7+
<meta name="author" content=" FILL ME IN ">
8+
<title>Cameron Pittman: Portfolio</title>
9+
<!--
10+
Removing link of css files
11+
<link href="css/style.css" rel="stylesheet">
12+
-->
13+
<link href="css/print.css" rel="stylesheet" media="print">
14+
15+
<style>
16+
<!-- Minified css for style.css from https://cssminifier.com/ -->
17+
.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;outline:0}code,pre{font-family:monospace,monospace;font-size:1em}ol,ul{margin:1em 0;padding:0 0 0 20px}img{border:0;max-width:100%}.container,footer,header{max-width:45em;margin:0 auto}header{padding:0 .5em;color:#C90B0B}header img{border-radius:40px;float:left}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 img{float:left;padding-right: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}}
18+
</style>
19+
20+
<!-- Shifting script tags -->
21+
</head>
22+
23+
<body>
24+
<header>
25+
<a href="/"><img src="img/profilepic.jpg"></a>
26+
<p>Cameron Pittman<br><span>Course Developer</span></p>
27+
</header>
28+
29+
<div class="container">
30+
<div class="hero">
31+
<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
32+
</div>
33+
34+
<div class="content">
35+
<ul>
36+
<li>
37+
<img src="https://lh4.ggpht.com/kJEnfqhPvtm4m3EneSZ4fWYGS8lW4YNhEjk6zPkyrQaBUHc-2Y_ElDic99NHI0h-UBLXVbRCjFybFvrWxdk=s100">
38+
<a href="project-2048.html">Build Your Own 2048!</a>
39+
<p>I made my own version of 2048. How cool is that!?</p>
40+
</li>
41+
42+
<li>
43+
<img src="https://lh6.ggpht.com/f_0W8h__3G99CWTjnMjD8BUKm7yp2-wJyApLtTwFoFtlal2ULf_JgHIsOQq2NiYfKOdMlXlMHDKNo5XVZLs=s100">
44+
<a href="project-webperf.html">Website Performance Optimization</a>
45+
<p>Hey... this class looks familiar.</p>
46+
</li>
47+
48+
<li>
49+
<img src="https://lh5.ggpht.com/IKdCmTWn8a2nMhlwMYzryvzRN5CUZAOBr4tDrEAbszV7TIFe9pRAInA4kkYcgTXwrifJsBEsq1agTueuu-g=s100">
50+
<a href="project-mobile.html">Mobile Web Development</a>
51+
<p>Making mobile apps isn't so hard after all.</p>
52+
</li>
53+
54+
<li>
55+
<img style="width: 100px;" src="views/images/pizzeria.jpg">
56+
<a href="views/pizza.html">Cam's Pizzeria</a>
57+
<p>Who wants a performant pizza?</p>
58+
</li>
59+
</ul>
60+
</div>
61+
62+
<footer>
63+
<p>&copy; Web Performance 2014 <span id="crp-stats"></span></p>
64+
</footer>
65+
</div>
66+
67+
<!-- Adding script tags at the end of body -->
68+
<script async>
69+
(function(w,g){w['GoogleAnalyticsObject']=g;
70+
w[g]=w[g]||function(){(w[g].q=w[g].q||[]).push(arguments)};w[g].l=1*new Date();})(window,'ga');
71+
72+
// Optional TODO: replace with your Google Analytics profile ID.
73+
ga('create', 'UA-XXXX-Y');
74+
ga('send', 'pageview');
75+
</script>
76+
<script async src="http://www.google-analytics.com/analytics.js"></script>
77+
<script async src="js/perfmatters.js"></script>
78+
79+
</body>
80+
</html>

0 commit comments

Comments
 (0)