-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
162 lines (149 loc) · 4.9 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="icons/iconmonstr-paintbrush-11.svg"
type="image/x-icon"
/>
<link rel="stylesheet" href="index.css" />
<title>Yaltha Rullist</title>
</head>
<body>
<!-- ==========NAV=========== -->
<nav>
<div class="navbar-left">
<a class="links active" href="#hero">Yaltha Rullist</a>
</div>
<input type="checkbox" id="check" />
<label for="check" class="checkbtn">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
>
<path
d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6 17h-12v-2h12v2zm0-4h-12v-2h12v2zm0-4h-12v-2h12v2z"
/>
</svg>
</label>
<div class="navbar-right">
<a class="links" href="#hero">Home</a>
<a class="links" href="#about-me">About me</a>
<a class="links" href="#contact-me">Contact me</a>
<a class="links portfolio" href="#portfolios">Portfolios</a>
</div>
</nav>
<!-- ==========HERO=========== -->
<section id="hero">
<div class="container">
<h1>Yaltha Rullist</h1>
<p>Web & Mobile App Designer</p>
<a href="#portfolios" class="links portfolio">See My Work</a>
<!-- <button class="portfolio">See My Work</button> -->
</div>
</section>
<!-- ==========PORTFOLIOS=========== -->
<section id="portfolios">
<!-- <h3 class="h3-header">Portfolios</h3> -->
<div class="title">
<h3>Portfolios</h3>
<div class="rectangle"></div>
</div>
<div class="card-container">
<div class="project-cards">
<img src="/img/24toys.jpg" alt="" />
</div>
<div class="project-cards">
<img src="/img/cactus.jpg" alt="" />
</div>
<div class="project-cards">
<img src="/img/kapii.jpg" alt="" />
</div>
<div class="project-cards">
<img src="/img/torgo_nudho.jpg" alt="" />
</div>
</div>
</section>
<!-- ==========ABOUT ME=========== -->
<section id="about-me">
<!-- <h3 class="h3-header">About me</h3> -->
<div class="title">
<h3>About me</h3>
<div class="rectangle"></div>
</div>
<div class="about-description">
<p>
Hello, my name is Yaltha Rullist. Welcome to my portfolio website. In
summary about me, I have an interest in UI/UX design. I constantly and continuously improving to be a better designer. Chhers!!!
</p>
</div>
</section>
<!-- ==========SKILLS=========== -->
<section id="skills">
<div class="title">
<h3>Skills</h3>
<div class="rectangle"></div>
</div>
<div class="skills-container">
<div class="skill-cards">
<p>Figma</p>
<div class="top"></div>
<div class="bottom"></div>
</div>
<div class="skill-cards">
<p>Adobe Photoshop</p>
<div class="top"></div>
<div class="bottom"></div>
</div>
<div class="skill-cards">
<p>Adobe Illustrator</p>
<div class="top"></div>
<div class="bottom"></div>
</div>
<div class="skill-cards">
<p>HTML</p>
<div class="top"></div>
<div class="bottom"></div>
</div>
<div class="skill-cards">
<p>CSS</p>
<div class="top"></div>
<div class="bottom"></div>
</div>
<div class="skill-cards">
<p>Javascript</p>
<div class="top"></div>
<div class="bottom"></div>
</div>
</div>
</section>
<!-- ==========CONTACT ME=========== -->
<section id="contact-me">
<div class="title">
<h3>Contact me</h3>
<div class="rectangle"></div>
</div>
<h2>Let's talk and have a cup of coffee!!!</h2>
<div class="contacts">
<img src="/icons/iconmonstr-whatsapp-4.svg" alt="wa" />
<a class="link-contact">Phone/Whatsapp : +62 853 2013 2700</a>
<img src="/icons/iconmonstr-email-10.svg" alt="wa" />
<a class="link-contact" href="mailto:[email protected]"
>Email: [email protected]</a
>
<img src="/icons/iconmonstr-instagram-14.svg" alt="wa" />
<a class="link-contact" href="https://www.instagram.com/yaltha/"
>Instagram: @yaltha
</a>
</div>
</section>
<!-- ==========FOOTER=========== -->
<footer>
<h5>Yaltha Rullist @2021</h5>
</footer>
</body>
</html>