-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
143 lines (136 loc) · 6.03 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
<html>
<head>
<!-- add script to redirect the default index.html of gitpage to webpage/index.html -->
<!-- <script>
if (window.location.href.indexOf('https://itcomma.github.io') === 0) {
window.location.href = 'https://itcomma.github.io/first-portfolio/Natours/';
}
</script>
<link rel="canonical" href="https://itcomma.github.io/first-portfolio/Natours/" /> -->
<!-- external stylesheet -->
<link rel="stylesheet" href="Natours/css/style.css">
<!-- internal stylesheet -->
<style>
.home__img {
position: absolute;
width: 20%;
top: -30px;
left: -10px;
}
</style>
</head>
<body>
<img class="home__img" src="images/itcomma.png" alt="itcomma logo">
<!--*************************************************
PROJECTS SECTION
*************************************************-->
<section style="background-color:#fff" class="section-tours">
<div class="u-center-text u-margin-bottom-medium">
<h2 class="heading-secondary">
Portfolio Projects
</h2>
</div>
<div class="row" id="section-tours-details">
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--4">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--4">
Natours
</span>
</h4>
<div class="card__details">
<ul>
<li>First project</li>
<li>Front-End stack</li>
<li>Modern style</li>
<li>Responsive design</li>
<li>Status (100% done)</li>
</ul>
</div>
</div>
<div class="card__side card__side--back card__side--back-4">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only"> </p>
<p class="card__price-value"> </p>
</div>
<a href="https://itcomma.github.io/first-portfolio/Natours/" class="btn btn--white">View details</a>
</div>
</div>
</div>
</div>
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--5">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--5">
Nexter
</span>
</h4>
<div class="card__details">
<ul>
<li>Second project</li>
<li>Front-End stack</li>
<li>CSS Grid</li>
<li>Responsive design</li>
<li>Status (100% done)</li>
</ul>
</div>
</div>
<div class="card__side card__side--back card__side--back-5">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only"> </p>
<p class="card__price-value"> </p>
</div>
<a href="https://itcomma.github.io/first-portfolio/Nexter/" class="btn btn--white">View details</a>
</div>
</div>
</div>
</div>
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--6">
</div>
<h4 class="card__heading">
<span class="card__heading-span card__heading-span--6">
Trillo
</span>
</h4>
<div class="card__details">
<ul>
<li>Third project</li>
<li>Front-End stack</li>
<li>Flex-box</li>
<li>Responsive design</li>
<li>Status (100% done)</li>
</ul>
</div>
</div>
<div class="card__side card__side--back card__side--back-6">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only"> </p>
<p class="card__price-value"> </p>
</div>
<a href="https://itcomma.github.io/first-portfolio/Trillo/" class="btn btn--white">View details</a>
</div>
</div>
</div>
</div>
</div>
<div class="u-center-text u-margin-top-huge">
<a href="https://github.com/ITComma/first-portfolio" class="btn btn--primary">Back to source code</a>
</div>
</section>
</body>
</html>