-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUindex.html
62 lines (61 loc) · 2 KB
/
Uindex.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
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>joes udacious page</title>
<link href="http://fonts.googleapis.com/css?family=Dosis" rel="stylesheet">
<link rel="stylesheet" href="css/normalise.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="grid">
<header class="row">
<div class="col-3" id="header-image">
<img src="images/face.png" alt ="header image">
</div>
<div class="col-9" id="header-text">
<h1>Joseph Mohan</h1>
<h3>Front-End Developer</h3>
</div>
</header>
<aside class="row" >
<div class="col-4" id="about-text">
<h3>Currently studying with Udacity</h3>
<p>Skills:<br>JS / HTML / CSS / PYTHON</p>
</div>
<div class="col-8">
<img src="http://skru.pythonanywhere.com/static/mysite/certificate-page-0.jpg" alt="cs101 certificate">
</div>
</aside>
<section class="row">
<h2 class="col-12" id="featured-title">Featured work:</h2>
</section>
<section class="row">
<article class="col-4">
<a href="http://www.newsshuffle.com">
<div class="featured-box">
<img src="http://placekitten.com/350/250" alt="newsshuffle.com">
<h3 class="featured-text">newsshuffle</h3>
</div>
</a>
</article>
<article class="col-4">
<a href="http://www.google.com">
<div class="featured-box">
<img src="http://placekitten.com/350/250" alt="image">
<h3 class="featured-text">frogger</h3>
</div>
</a>
</article>
<article class="col-4">
<a href="http://www.google.com">
<div class="featured-box">
<img src="http://placekitten.com/350/250" alt="image">
<h3 class="featured-text">misc</h3>
</div>
</a>
</article>
</section>
</div>
</body>
</html>