-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (72 loc) · 2.42 KB
/
index.html
File metadata and controls
75 lines (72 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style/index.css">
<title>Document</title>
</head>
<body>
<header>
<h1>NYJAE LEE</h1>
<nav>
<button><a href="index.html">HOME</a></button>
<button><a href="about.html">ABOUT</a></button>
<button><a href="contact.html">CONTACT</a></button>
<button><a href="projects.html">PROJECTS</a></button>
</nav>
</header>
<section class="top-section">
<img src="https://picsum.photos/600/400" alt=""/>
<div class="description">
<h2> NYJAE LEE</h2>
<button><a href="projects.html">My Projects</a></button>
<p>
Here are some random words about my journey as a webDEV. Hope they are inspiring.
</p>
</div>
</section>
<section>
<div class="row">
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
</div>
<div class="row">
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
</div>
</section>
<footer>
<h2>Like What You See?</h2>
<button><a href="contact.html">Contact Me</a></button>
</footer>
</body>
</html>