-
Notifications
You must be signed in to change notification settings - Fork 1
/
index3.html
99 lines (94 loc) · 4.03 KB
/
index3.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
/>
<title>Alayt @ IBM</title>
</head>
<body>
<div class="jumbotron">
<h1 class="display-4 text-center">Hello!</h1>
<p class="lead text-center text-dark">
My name is Alayt Issak and I am an international student from Addis
Ababa, Ethiopia (currently situated in Washington, D.C.).
</p>
</div>
<div class="row mb-4 col-lg-12 col-md-12 col-sm-12 col-xl-12 col-xs-12">
<div class="col-lg-3 col-md-3 col-sm-12 col-xl-3 col-xs-12">
<img src="images/pic01.jpg" class="img-thumbnail img-fluid" alt="Responsive image" />
</div>
<div class=" mb-4 col-lg-9 col-md-9 col-sm-12 col-xl-9 col-xs-12 text-center mt-2" style="background-color: #eceff1" >
<h1 class="display-4">About Me</h1>
<p class="lead text-center">
I am a rising senior studying Mathematics at The College of Wooster. I am excited to be joining this summer as a Machine Learning Intern.
</p>
</div>
</div>
<div class="container col-lg-12 col-xl-12 p-5 " style="background-color: #eceff1">
<div class="row row-cols-1 row-cols-md-2 ">
<div class="col mb-4">
<div class="card">
<img src="images/pic02.jpg" class="card-img-top" alt="..." />
<div class="card-body">
<h5 class="card-title">Athletics</h5>
<p class="card-text">
I am a Division III Student Athlete. I run Cross country in the fall and Track & Field in the spring. I generally enjoy all sports so being active is part of who I am.
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<img src="images/pic03.jpg" class="card-img-top" alt="..." />
<div class="card-body">
<h5 class="card-title">Travel</h5>
<p class="card-text">
I enjoy travel and had been studying abroad this past semester in Copenhagen, Denmark. Even though my program was halted midway due to the pandemic, I had already travelled to 6 countries throughout Europe.
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card">
<img src="images/pic04.jpg" class="card-img-top" alt="..." />
<div class="card-body">
<h5 class="card-title">Art</h5>
<p class="card-text">
Aside Maths, I have a Studio Art minor. I explore creativity through various mediums such as sculpture and printmaking. The sculpture above is a reinterpretation of my favorite mountain range: Gherlata.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"
></script>
</body>
</html>