-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·77 lines (67 loc) · 2.45 KB
/
index.html
File metadata and controls
executable file
·77 lines (67 loc) · 2.45 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
<!doctype html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Montserrat" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Swift Aveiro Workshops</title>
</head>
<body>
<div class="wrapper">
<div class="topnav">
<a data-scroll href="index" class="smoothScroll">Home</a>
<a data-scroll href="2018workshops" class="smoothScroll">Workshops 2018</a>
</div>
<div class="container">
<div class="contentContainer" id="about">
<header>
<h1 class="name">Swift Aveiro Workshops</h1>
</header>
<img class="photo" src="photo.jpg">
<article>
<p> Welcome to <a href="https://www.swiftaveiro.xyz">Swift Aveiro</a>'s collection of workshops.
All workshops & presentations you can find here had their place in one of our editions.
If you have any doubt or question, feel free to contact us.
</p>
</article>
</div>
<div class="container">
<div class="sectionStyleBlue">
<footer id="contact">
<header>
<h1 class="title-white">Contacts</h1>
</header>
<div class="row-icon">
<div class="column-icon">
<a href="mailto:swiftaveiro@gmail.com">
<img src="Resources/Logos/mail.png" class="icon">
</a>
</div>
<div class="column-icon">
<a href="http://www.twitter.com/swiftaveiro">
<img src="Resources/Logos/twitter.png" class="icon">
</a>
</div>
<div class="column-icon">
<a href="http://www.github.com/swiftaveiro">
<img src="Resources/Logos/github-white.png" class="icon">
</a>
</div>
</div>
</footer>
</div>
</div>
</div>
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/smooth-scroll.js"></script>
<script src="js/main.js"></script>
<script src="https://unpkg.com/scrollreveal/dist/scrollreveal.min.js"></script>
<script>
var config = { viewFactor: 0.001 }
window.sr = ScrollReveal(config);
sr.reveal('#projects');
sr.reveal('#contact');
</script>
</body>
</html>