-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.html
96 lines (84 loc) · 3.88 KB
/
profile.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" type="text/css" href="profile.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@900&display=swap" rel="stylesheet">
</head>
<body>
<!------------- Header section ------------------->
<section id="nav-bar">
<nav class="navbar navbar-expand-lg navbar-light ">
<a class="navbar-brand" href="index.html">Coders.<span>Tokyo</span></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">PRODUCTS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">CONTACT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">BLOG</a>
</li>
<li class="nav-item">
<img src="images/shopping-cart.png">
</li>
</ul>
</div>
</nav>
</section>
<!------------- Shopping cart section ------------>
<section id="shopping-cart">
<div class="container">
<h1 class="text-center shopping-cart-title">Hesabım</h1>
<div class="row" style="margin-bottom: 30px; margin-top: 50px; justify-content: center;">
<div class="col-md-6">
<form action="order_details.html">
<button class="block">Bilgilerim</button>
</form>
</div>
</div>
<div class="row" style="margin-bottom: 30px; justify-content: center; ">
<div class="col-md-6">
<form action="orders.html">
<button class="block">Siparişlerim</button>
</form>
</div>
</div>
<div class="row" style="margin-bottom: 50px; justify-content: center;">
<div class="col-md-6">
<form action="order_details.html">
<button class="block">Taleplerim</button>
</form>
</div>
</div>
<div class="button-container">
<div class="button-center">
<button type="submit" class="btn btn-primary" style="background-color: #343a40;">Çıkış Yap</button>
</div>
</div>
</div>
</section>
<!------------- Footer section ------------------->
<section id="footer">
<div class="container-fluid container-spacing text-center">
<p>Copyright 2020 Coders.Tokyo. All rights reserved.</p>
<p>Term of Service | Privacy</p>
</div>
</section>
</body>
</html>