-
Notifications
You must be signed in to change notification settings - Fork 0
/
mensaje_enviado.html
29 lines (28 loc) · 1.23 KB
/
mensaje_enviado.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
<!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">
<link rel="stylesheet" href="./css/reset.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=Raleway:wght@100;300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/card/card.css">
<title>Mensaje Enviado</title>
</head>
<body>
<section class="box">
<div class="container">
<div class="card">
<i class="fa fa-clipboard-check"></i>
<h2 class="title">Mensaje enviado con éxito</h2>
<a class="button" href="./index.html">Regresar</a>
</div>
</div>
</section>
<script src="./js/form_submited.js"></script>
</body>
</html>