-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdraft.html
More file actions
142 lines (129 loc) · 5.09 KB
/
Copy pathdraft.html
File metadata and controls
142 lines (129 loc) · 5.09 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
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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8" content="width = device-width, initial-scale = 1">
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<title> Personal portfolio</title>
<style>
h2{
font-family: Poppins;
}
/* .bg-main-color{
background-color: rgb(23, 193, 255) !important;
}*/
@keyframes animation_type{
from {width: 0;}
to {width: 100%;}
}
@keyframes animation_blink{
from, to{
border-color: transparent;
}
50%{
border-color: olivedrab;
}
}
section{
display: inline-block;
margin-left: 32%;
margin-top: 75px;
}
.animation_play{
font-size: 3.5vw;
font-family: Nunito, Arial, Poppins;
font-weight: 700;
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: .10em solid; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
animation:
animation_type 1.5s steps(30, end),
animation_blink 1.5s step-end infinite;
}
.animation_text{
font-size: 1.5vw;
font-weight: 300;
font-family: Nunito, Arial, Poppins;
overflow: hidden; /* Ensures the content is not revealed until the animation */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
}
</style>
</head>
<section>
<h1 class = "animation_play"> Hello World, I'm Jun Jie.</h1>
</section>
<body>
<!-- NAV -->
<nav class="navbar navbar-expand-sm bg-dark navbar-dark bg-main-color fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#">Jun Jie</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class = "container text-center" style = "height: 75vh;">
<img style ="width: 25vw; object-fit: cover;" class = "rounded-circle img-fluid" src="img/avator_2.png" alt = "avator_icon" >
<p class = "animation_text"> I am in my Sophomore year at NUS, pursuing a degree in Information Security.</p>
</div>
<div class = "container-fluid" style = "background-color: rgb(204, 245, 255); height: 75vh; ">
<div class = "container">
<h2>My projects...</h2>
<!-- Carousel -->
<div id="demo" class="carousel slide" data-bs-ride="carousel">
<!-- Indicators/dots -->
<div class="carousel-indicators">
<button type="button" data-bs-target="#demo" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="1"></button>
<button type="button" data-bs-target="#demo" data-bs-slide-to="2"></button>
</div>
<!-- The slideshow/carousel -->
<div class="carousel-inner" style="padding: 0% 10% 0% 10%;">
<div class="carousel-item active">
<img src="img/App_screen.png" alt="Groceries Management App" class="d-inline-block w-50 img-fluid">
<h3> Groceries Management App </h3>
<p> Blah blah blah</p>
</div>
<div class="carousel-item">
<img src="img/Game.png" alt="Game" class="d-inline-block w-50 img-fluid" >
<h3> The Heist!</h3>
<p> Blah Blah Blah </p>
</div>
<div class="carousel-item">
<img src="img/Project3.png" alt="New York" class="d-inline-block w-50">
<h3> Website for my Juniors :D</h3>
<p> Blah Blah Blah </p>
</div>
</div>
<!-- Left and right controls/icons -->
<button class="carousel-control-prev" type="button" data-bs-target="#demo" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#demo" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</div>
</div>
</div>
</body>
</html>