-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (84 loc) · 3.28 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<title>FERG</title>
</head>
<body>
<section class="container">
<!-- ///// Header ///// -->
<header class="header">
<div class="iceberg-container">
<img class="iceberg-logo" src="./images/iceberg-logo.png" alt="logo">
<h1 class="title">ferg</h1>
</div>
</header>
<!-- //// empty div for floating header ///// -->
<div class="header-push"></div>
<!-- ///// Main ///// -->
<div class="banner-photo">
<p class="developer">Web/App Developer</p>
<div class="circular">
<svg viewBox="0 0 100 100">
<path d="M 0, 50 a 50, 50 0 1, 1 0,1 z" id="circle" />
<text>
<textPath xlink:href="#circle">
Fergus MacConnell Developer
</textPath>
</text>
</svg>
</div>
<p class="musician">Musician</p>
</div>
<div class="albums-text">Albums</div>
<section class="album-list">
<div class="album">
<a href="https://icebergferg.bandcamp.com/album/in-the-valley-of-the-purple-prince">
<img class="album-image" src="./images/purple-prince-cover.jpg" alt="album cover" />
</a>
</div>
<div class="album">
<a href="https://icebergferg.bandcamp.com/album/waiting-on">
<img class="album-image" src="./images/waiting-on-cover.jpg" alt="album cover" />
</a>
</div>
<div class="album">
<a href="https://icebergferg.bandcamp.com/album/im-gonna-build-me-a-graveyard-of-my-own">
<img class="album-image" src="./images/build-me-a-grave-cover.jpg" alt="album cover" />
</a>
</div>
<div class="album">
<a href="https://icebergferg.bandcamp.com/album/iceberg-s-t">
<img class="album-image" src="./images/iceberg-st-cover.jpg" alt="album cover" />
</a>
</div>
</section>
<!-- ///// Footer ///// -->
<footer class="footer">
<div class="github-link">
<a href="https://github.com/fergmac" alt"github">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</div>
<div class="linkedin-link">
<a href="https://www.linkedin.com/in/fergus-macconnell/?ppe=1" alt="linkedin">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</div>
<div class="bandcamp-link">
<a href="https://icebergferg.bandcamp.com/" alt="bandcamp">
<i class="fa fa-bandcamp" aria-hidden="true"></i>
</a>
</div>
<div class="soundcloud-link">
<a href="https://soundcloud.com/iceberg_ferg" alt="soundcloud">
<i class="fa fa-soundcloud" aria-hidden="true"></i>
</a>
</div>
</footer>
</section>
<!-- ///// Javascript ///// -->
<script src="./build/bundle.js"></script>
</body>
</html>