-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Home</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header class="head">
<div class="logo">Kyungsu Choi</div>
<div class="right-links">
<div class="link-icon"><a>DS</a></div>
<div class="link-icon"><a>CS</a></div>
<div class="link-icon"><a>CV</a></div>
</div>
</header>
<section class="sec1">
<div class="sec1-left">
<h1>This website is about me</h1>
<div>I am interested in data science, full stack engineer, and electrical engineering.
If you want to know more about me, click the following profile button</div>
<div><button class="sec1-button">Profile</button></div>
</div>
<figure class="sec1-img">
<img src=./img/main-image.jpeg>
</figure>
</section>
<section class="sec2">
<h1 class="sec2-head">These are my interests</h1>
<div class="sec2-body">
<figure class="sec2-fig">
<img class="sec2-img" src=./img/data.png>
<figcaption>Data Science</figcaption>
</figure>
<figure class="sec2-fig">
<img class="sec2-img" src=./img/fullstack.jpeg>
<figcaption>Full Stack</figcaption>
</figure>
<figure class="sec2-fig">
<img class="sec2-img" src=./img/electronic.jpeg>
<figcaption>Electrical Engineering</figcaption>
</figure>
</div>
</section>
<section class="sec3">
<div class="sec3-body">
<div id="sec3-quote">There are many ways to tackle a project like this,
and it can be overwhelming to look at a blank HTML document
and not know where to start. Our suggestion: take it one section
at a time. The website you’re creating has 4 main sections
(and a footer), so pick one and get it into pretty good
shape before moving on. Starting at the top is always
a solid plan.</div>
<div id="sec3-name">-Name</div>
</div>
</section>
<footer class="footer">
<div id="footer-text">This is footer</div>
</footer>
</body>
</html>