-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
64 lines (61 loc) · 2.19 KB
/
welcome.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>welcome</title>
<!-- style -->
<link rel="stylesheet" href="./css/welcome.css">
<!-- box icon -->
<link href="asset/boxicons/css/boxicons.min.css" rel="stylesheet">
</head>
<body>
<nav class="nav">
<div class="logo_search">
<div class="wrap">
<img src="asset/images/yyy.png" alt="tek-x-logo" class="nav-logo">
<form action="">
<input type="text">
<button type="submit"><i class="bx bx bx-search" aria-hidden="true"></i></button>
</form>
</div>
<div class="inout">
<a href="#" class="sign">Sign in</a>
<a href="#" class="sign">Sign out</a>
</div>
</div>
</nav>
<section class="wrapper">
<div class="upper">
<p class="greeting">welcome Codeknight</p>
<div class="dp">
<div class="dp_div"><i class="bx bx bx-camera"></i></div>
</div>
<p class="instro">Upload Profile Picture</p>
<a href="#" class="upload">Upload</a>
</div>
<div class="lower">
<div class="slider">
<div class="one">1</div><span class="one_line"></span>
<div class="two">2</div><span class="two_line"></span>
<div class="three">3</div>
</div>
<p class="user_data">User Data</p>
<div class="info">
<p class="name-paragraph">User Name</p>
<input type="text" placeholder="Codeknight Dojo" class="name-input">
<p class="portfolio-paragraph">Portfolio</p>
<input type="text" placeholder="(optional)" class="phone-input">
<legend class="legend_bio">Bio</legend>
<textarea name="bio" cols="30" rows="10"
placeholder="Tell us about yourself" class="row">
</textarea>
<div class="bottons_control">
<a class="proceed" href="userskill.html">proceed</a>
</div>
</div>
</div>
</section>
</body>
</html>