-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (114 loc) · 4.18 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Website from figma</title>
<meta name="description" content="website from figma">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
</head>
<body>
<main>
<div class="container-flex">
<nav>
<div class="start">
<h1>ma.</h1>
</div>
<div class="end">
<ul class="list-nav">
<li><a href="/" class="nav-link">Home</a></li>
<li><a href="./pages/about.html" class="nav-link">About</a></li>
<li><a href="#" class="nav-link">Projects</a></li>
<li><a href="#" class="nav-link">Contact</a></li>
</ul>
</div>
<div class="hamburger">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</div>
</nav>
<div class="content">
<div class="row title">
<div class="title-1">
<h1>
Hello, I’m <br>
Mehmet Akif.
</h1>
</div>
<p>A senior-year design student who trying to specialize in 3D
modeling & texturing.</p>
</div>
<div class="arrow">↓</div>
<section class="first">
<div class="row">
<div class="txt">
<div class="top">
<h1>01 / Project Name</h1>
<h2>Goblin concept digital sculpture with human-like skin. Learned a lot of quick tips and look development.</h2>
<p>Sculpted in ZBrush, Retopologized and UVs done in Maya, Textured in Mari, Rendered using Arnold.</p>
</div>
<div class="link bottom">
<a href="#">More shots from this project ↗</a>
</div>
</div>
<div class="img">
<img src="./img/" alt="Image">
</div>
</div>
</section>
<div class="line"></div>
<section>
<div class="row">
<div class="txt">
<div class="top">
<h1>02 / Project Name</h1>
<h2>Subsurface weight, specular roughness, diffuse maps generated with the procedure and manual techniques.</h2>
</div>
<div class="link bottom">
<a href="#">See case study →</a>
</div>
</div>
<div class="img">
<img src="./img/" alt="Image">
</div>
</div>
</section>
<div class="line"></div>
<section>
<div class="row">
<div class="txt">
<div class="top">
<h1>03 / Project Name</h1>
<h2>Experimental creature modeling for school project.</h2>
</div>
<div class="link bottom">
<a href="#">Project WIP</a>
</div>
</div>
<div class="img">
<img src="./img/" alt="Image">
</div>
</div>
</section>
</div>
<footer>
<div class="row">
<h1 class="fancy">Mehmet Akif Karasu ⏤ 2020</h1>
<ul class="social">
<li><a href="#">Artstation</a></li>
<li><a href="#">LinkedIn</a></li>
<li><a href="#">Twitter</a></li>
</ul>
</div>
</footer>
</div>
</main>
<script src="./src/script.js" defer></script>
</body>
</html>