-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (140 loc) · 5.62 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="sv">
<head>
<title>Sebastian Axel Wikström :: front-end developer</title>
<!-- Ensure proper rendering and touch zooming -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Stylesheets -->
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="styles/style.css">
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Smooth Scrolling -->
<script>
$(document).ready(function() {
// Add to all links
$("a").on('click', function(event) {
// Make sure this.hash has a value
if (this.hash !== "") {
// Prevent default click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// jQuery's animate() method
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 500, function() {
// Add hash (#) to URL
window.location.hash = hash;
});
}
});
});
</script>
</head>
<body>
<div class="page first-page">
<h1 id="your-name">Sebastian Wikström</h1>
<h2 id="your-title">front-end developer</h2>
<a id="portfolio-link" href="#portfolio"><i class="fa fa-chevron-down"></i></a>
</div>
<div id="portfolio" class="page">
<h1>Projects</h1>
<div class="wrapper">
<!-- Project 0 -->
<div class="box">
<div class="project-image-panel">
<img class="project-image" src="omniquiz.png" alt="">
</div>
<div class="project-info">
<h2 class="project-title">OmniQuiz</h2>
<hr>
<p>Tech: React, Node.js (Express)</p>
<hr>
<p>Coming soon!</p>
<div class="project-bottom">
<a class="w3-btn w3-white w3-round-large w3-disabled"><i class="fa fa-external-link"></i> DEMO</a>
<a class="w3-btn w3-white w3-round-large w3-disabled"><i class="fa fa-code"></i> CODE</a>
</div>
</div>
</div>
<!-- Project 1 -->
<div class="box">
<div class="project-image-panel">
<img class="project-image" src="ccv.png" alt="">
</div>
<div class="project-info">
<h2 class="project-title">Luhn</h2>
<hr>
<p>Tech: HTML, Bootstrap, Javascript</p>
<hr>
<p>Validation of credit cards.</p>
<div class="project-bottom">
<a href="https://seaxwi.github.io/luhn" target="_blank" class="w3-btn w3-white w3-round-large w3-hover-green"><i class="fa fa-external-link"></i> DEMO</a>
<a href="https://github.com/seaxwi/luhn" target="_blank" class="w3-btn w3-white w3-round-large w3-hover-red"><i class="fa fa-code"></i> CODE</a>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="box">
<div class="project-image-panel">
<img class="project-image" src="seaxwi.png" alt="">
</div>
<div class="project-info">
<h2 class="project-title">seaxwi.github.io</h2>
<hr>
<p>Tech: HTML, CSS</p>
<hr>
<p>Personal webpage built mainly in pure HTML/CSS with some JS-enhancements.</p>
<div class="project-bottom">
<a href="" class="w3-btn w3-white w3-round-large w3-hover-green"><i class="fa fa-external-link"></i> DEMO</a>
<a href="https://github.com/seaxwi/seaxwi.github.io" target="_blank" class="w3-btn w3-white w3-round-large w3-hover-red"><i class="fa fa-code"></i> CODE</a>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="box">
<div class="project-image-panel">
<img class="project-image" src="djupvik.png" alt="">
</div>
<div class="project-info">
<h2 class="project-title">Djupviks Hamn</h2>
<hr>
<p>Tech: HTML, Bootstrap, Javascript</p>
<hr>
<p>Website with responsive CSS and JS-navbar.</p>
<div class="project-bottom">
<a href="https://seaxwi.github.io/djupvik" target="_blank" class="w3-btn w3-white w3-round-large w3-hover-green"><i class="fa fa-external-link"></i> DEMO</a>
<a href="https://github.com/seaxwi/djupvik" target="_blank" class="w3-btn w3-white w3-round-large w3-hover-red"><i class="fa fa-code"></i> CODE</a>
</div>
</div>
</div>
</div>
<div class="contact-box center">
<h1 id="contact-me">Contact me</h1>
<form action="https://formspree.io/xbjpjpke" method="POST">
<label for="form-name">Name</label>
<input type="text" id="form-name" name="form-name" placeholder="Your name." required>
<label for="lname">Email</label>
<input type="text" id="email" name="email" placeholder="Your email." required>
<label for="subject">message</label>
<textarea id="subject" name="subject" placeholder="Write a message." style="height:200px" required></textarea>
<input type="submit" value="Submit">
</form>
</div>
</div>
<footer>
<p>© 2020 Sebastian Wikström</p>
<div class="logo-link-container">
<a href="https://github.com/seaxwi">
<img class="logo-link" src="GitHub-Mark-Light-64px.png" alt="github logo">
</a>
<a href="https://codepen.io/seaxwi">
<img class="logo-link" src="Codepen-Button-White-Large.png" alt="codepen logo">
</a>
</div>
</footer>
</body>
</html>