-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (65 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>Personal Portfolio Challenge for FCC</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
</head>
<body>
<nav id="navbar">
<ul>
<li> <a href="#">Home</a> </li>
<li> <a href="#">#FoldUnfold</a> </li>
<li> <a href="#">See!</a> </li>
<li> <a href="#">Say</a> </li>
</ul>
</nav>
<section id="welcome-section">
<h1>Do you like Paper toys?</h1>
<p>Thanks to Brian for his wonderful designs shared at <a href="http://paperfoldables.com">PaperFoldables.com</a>. <br>Here are a few I made at home for my kids! </p>
</section>
<section id = "portfolio-section">
<h2>#FoldUnfold </h2>
<p>Nothing but 200GSM paper</p>
<div class = "portfolio-container">
<div class="portfolio-item">
item 1
</div>
<div class="portfolio-item">
item 2
</div>
<div class="portfolio-item">
item 3
</div>
<div class="portfolio-item">
item 4
</div>
<div class="portfolio-item">
item 5
</div>
<div class="portfolio-item">
item 6
</div>
</div>
</section>
<section id="contact-section">
<h2>Keep in touch!</h2>
<div class="contact-container">
<div class="contact-item">
<i class="fab fa-facebook" alt="facebook"></i>
</div>
<div class="contact-item">
<i class="fab fa-twitter" alt="twitter"></i>
</div>
<div class="contact-item">
<i class="fas fa-envelope-square" alt="email"></i>
</div>
<div class="contact-item">
<i class="fab fa-youtube" alt="youtube"></i>
</div>
</div>
</section>
</body>
</html>