-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
137 lines (103 loc) · 4.33 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
<!doctype html>
<html class="no-js" lang="en">
<div id="header"></div>
<!-- welcome-hero start -->
<section id="welcome-hero" class="welcome-hero">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6">
<div class="header-text">
<h2>hi<span>,</span> i am <br> Philip <br> Ivers Ohlsson<span>.</span></h2>
<p>Data Science and AI</p>
</div>
<div class="list-icon">
<ul>
<!-- ... other li elements ... -->
<li>
<a href="https://www.linkedin.com/in/philip-ivers-ohlsson-9874a313b/" target="_blank" class="linkedin">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="https://github.com/IversOhlsson" target="_blank" class="github">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="assets/other/Philip_I_O_resume.pdf" target="_blank" class="resume" download title="Pdf resume download">
<i class="fa fa-file-pdf-o" aria-hidden="true"></i>
</a>
</li><!-- / li -->
</ul><!-- / ul -->
</div>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container -->
</section>
<!--welcome-hero end -->
<div id="project"></div>
<div id="about"></div>
<div id="education"></div>
<div id="experience"></div>
<div id="education"></div>
<div id="skills"></div>
<!--footer-copyright start-->
<footer id="footer-copyright" class="footer-copyright">
<div class="container">
<div class="hm-footer-copyright text-center">
<p>
© copyright Philip Ivers Ohlsson
</p><!--/p-->
</div><!--/.text-center-->
</div><!--/.container-->
<div id="scroll-Top">
<div class="return-to-top">
<i class="fa fa-angle-up " id="scroll-top" ></i>
</div>
</div><!--/.scroll-Top-->
</footer><!--/.footer-copyright-->
<!--footer-copyright end-->
<!-- Include all js compiled plugins (below), or include individual files as needed -->
<script src="assets/js/jquery.js"></script>
<!--modernizr.min.js-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<!--bootstrap.min.js-->
<script src="assets/js/bootstrap.min.js"></script>
<!-- bootsnav js -->
<script src="assets/js/bootsnav.js"></script>
<!-- jquery.sticky.js -->
<script src="assets/js/jquery.sticky.js"></script>
<!-- for progress bar start-->
<!-- progressbar js -->
<script src="assets/js/progressbar.js"></script>
<!-- appear js -->
<script src="assets/js/jquery.appear.js"></script>
<!-- for progress bar end -->
<!--owl.carousel.js-->
<script src="assets/js/owl.carousel.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<!--Custom JS-->
<script src="assets/js/custom.js"></script>
<script>
// Async function to load the HTML content and set it to the div
async function includeHTML() {
const header = await fetch('header.html').then(response => response.text());
const skills = await fetch('skills.html').then(response => response.text());
const project = await fetch('project.html').then(response => response.text());
const experience = await fetch('experience.html').then(response => response.text());
const education = await fetch('education.html').then(response => response.text());
const about = await fetch('about.html').then(response => response.text());
document.getElementById("header").innerHTML = header;
/* document.getElementById("skills").innerHTML = skills; */
document.getElementById("project").innerHTML = project;
document.getElementById("experience").innerHTML = experience;
document.getElementById("education").innerHTML = education;
document.getElementById("about").innerHTML = about;
/* const ranksv = await fetch('projects/ranksv.html').then(response => response.text());
document.getElementById("ranksv").innerHTML = ranksv; */
}
// Call the function on page load
includeHTML();
</script>
</body>
</html>