-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (95 loc) · 3.29 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
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-icon-180x180.png">
<link href="assets/favicon.ico" rel="icon">
<title>Title Page</title>
<link href="main.3f6952e4.css" rel="stylesheet">
<style>
body {
background-image: url('assets/images/data_engineer.PNG'); /* Set the background image */
background-size: cover; /* Ensure the image covers the whole page */
background-repeat: no-repeat;
background-position: center;
color: #000000; /* Black text for visibility */
}
.navbar-nav li a {
font-weight: bold;
color: #000000; /* Black text */
}
.navbar-nav li a:hover {
color: #000000; /* Maintain black text for hover effect */
}
.navbar-inverse {
background-color: transparent; /* Transparent background for navbar */
border: none;
}
.hero-full-container {
background: none; /* Remove any background color to show the body image */
color: #000000; /* Black text */
}
.hero-full-container .text-content h1 {
color: #000000; /* Black headings */
font-size: 5em; /* Increase heading size */
}
.text-content span {
font-size: 3.5em; /* Increase font size for spans */
font-weight: bold; /* Ensure the text remains bold */
color: #000000; /* Black text */
}
</style>
</head>
<body class="minimal">
<div id="site-border-left"></div>
<div id="site-border-right"></div>
<div id="site-border-top"></div>
<div id="site-border-bottom"></div>
<!-- Header content -->
<header>
<nav class="navbar navbar-fixed-top navbar-inverse">
<div class="container">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="./index.html">01 : Home</a></li>
<li><a href="./works.html">02 : Works</a></li>
<li><a href="./about.html">03 : About me</a></li>
<li><a href="./education.html">04 : Education</a></li>
<li><a href="./contact.html">05 : Contact</a></li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Site content -->
<div class="hero-full-container white-text-container">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="hero-full-wrapper">
<div class="text-content">
<span id="typed-strings">
<span><b>Hello,</b> welcome to my portfolio</span>
<span>My name is Yengkong Sayaovong</span>
<span>I am currently a Mechanical Designer</span>
<span>Currently aspiring to become a Data Engineer</span>
</span>
<span id="typed"></span>
</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function (event) {
type();
movingBackgroundImage();
});
</script>
<script type="text/javascript" src="main.70a66962.js"></script>
</body>
</html>