-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (107 loc) · 4.96 KB
/
index.html
File metadata and controls
140 lines (107 loc) · 4.96 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
<meta name="description" content="Sample web page description goes here.">
<!-- Preload large image -->
<link rel="preload" href="assets/img/tancrede.png" as="image">
<!-- Stylesheets -->
<link rel="stylesheet" href="https://lunevedy.com/assets/2.0/css/lunevedy.min.css" />
<link rel="stylesheet" href="assets/css/custom.css" />
<!-- Google Fonts -->
<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=Crimson+Text:wght@400;700&display=swap" rel="stylesheet">
<!-- Font Awesome 6 icons. Delete if not using. -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Line Awesome thin icons. Delete if not using. -->
<link rel="stylesheet" href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D0HFPE78MV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-D0HFPE78MV');
</script>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.css" />
</head>
<body div class="font">
<!-- menu and 'hero block' header -->
<nav class="theme-dark"><div class="container-menu">
<a href="#" class="brand">
<img src="assets/img/logo.png" alt="Logo">
</a>
<div class="container-menu-links">
<div class="nav-toggle" id="nav-toggle-btn">
<div class="bar-1"></div>
<div class="bar-2"></div>
<div class="bar-3"></div>
</div>
<ul class="links-wrapper">
<li><a href="index.html">Home</a></li>
<li><a href="portfolio/index.html">Portfolio</a></li>
<li><a href="portfolio/contact/index.html">Contact</a></li>
</ul>
</div></div></nav>
<!-- header starts here -->
<header class="theme-light cols-2-half text-center-mobile">
<div class="col-2 col-text ">
<h1>Tancrede Salotti | Fullstack developper</h1>
<h2>Find below my projects :</h2>
<div class="container-btn">
<a href="portfolio/index.html" class="btn btn-solid"><span>My Portfolio</span><i class="fa-solid fa-briefcase"></i></a><a href="portfolio/contact/index.html" class="btn btn-outline"><span>Contact me <i class="fa-solid fa-address-book"></i></a>
</div>
</div>
<div class="col-2 col-visual">
<figure>
<img src="assets/img/tancrede.png" alt="Placeholder image">
</figure>
</div>
</header>
<!-- header ends here -->
<!-- main content with sections -->
<main>
</main>
<!-- footer -->
<footer class=" theme-dark text-center-desktop text-center-mobile back">
<h2>Tancrède Salotti</h2>
<h3>Fullstack developper</h3>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="portfolio/index.html">Portfolio</a></li>
<li><a href="portfolio/contact/index.html">Contact</a></li>
</ul>
<ul class="footer-icons">
<li><a href="https://www.linkedin.com/in/tancr%C3%A8de-salotti-2225ba274/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/TancredeS" target="_blank"><i class="fab fa-github-square"></i></a></li>
</ul>
<p class="privacy"><a href="privacy.html">Privacy & Legal</a></p>
</footer>
<!-- footer -->
<footer></footer>
<script src="https://lunevedy.com/assets/js/lunevedy.js"></script>
<script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js" data-cfasync="false"></script>
<script>
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#237afc"
},
"button": {
"background": "#fff",
"text": "#237afc"
}
},
"content": {
"message": "Click here to accept cookies and hide this message.",
"href": "https://tancredeS.github.io/privacy.html"
}
});
</script>
</div>
</body>
</html>