-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
executable file
·72 lines (72 loc) · 4.29 KB
/
blog.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
<!DOCTYPE html>
<html lang="es">
<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="style/blog.css">
<link rel="stylesheet" href="style/navbar.css">
<link rel="stylesheet" href="style/footer.css">
<link rel="stylesheet" href="style/style.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=Courgette&family=Josefin+Sans:wght@300&family=PT+Serif&family=Quicksand:wght@500&display=swap" rel="stylesheet">
<script src="js/footer.js" defer></script>
<script src="js/navbar.js" defer></script>
<title>Blog</title>
<link rel="icon" type="image/x-icon" href="img/logo.png">
</head>
<body>
<body id="blog-body">
<div class="navbar">
<div class="logo"><a href="index.html"><img src="img/logo.png" alt="girl holding a cat logo"></a></div>
<div class="navbar-buttons">
<div class="about-us"><a href="index.html"><img src="img/buttons/about-us.png" alt="about us"></a></div>
<div class="portfolio"><a href="portfolio.html"><img src="img/buttons/portfolio.png" alt="portfolio"></a></div>
<div class="how-buy"><a href="how-buy.html"><img src="img/buttons/how-buy.png" alt="how to buy"></a></div>
<div class="contact-us"><a href="contact-us.html"><img src="img/buttons/contact-us.png" alt="contact us"></a></div>
<div class="blog"><a href="blog.html"><img src="img/buttons/blog.png" alt="blog"></a></div>
</div>
<div class="languages"><a href=""><img src="img/esp-to-eng.png" alt="english to spanish"></a></div>
</div>
<div class="navbar-mobile">
<div class="logo-mobile"><a href="index.html"><img src="img/logo2.png" alt="girl holding a cat logo"></a></div>
<div class="navbar-mobile-right">
<div class="languages-mobile"><a href=""><img src="img/esp-to-eng.png" alt="english to spanish"></a></div>
<div class="burger-menu">☰</div>
<ul class="navbar-mobile-buttons">
<a href="index.html"><li class="about-us-mobile button">Acerca de mi</li></a>
<a href="portfolio.html"><li class="portfolio-mobile button">Mis Trabajos</li></a>
<a href="how-buy.html"><li class="how-buy-mobile button">Cómo comprar?</li></a>
<a href="contact-us.html"><li class="contact-us-mobile button">Contáctame</li></a>
<a href="blog.html"><li class="blog-mobile button">Blog</li></a>
</ul>
</div>
</div>
<div id="blog-content" >
<img src="img/coming-soon.jpg" alt="">
</div>
<div class="footer-mobile">
<div class="footer-credits">
<h5 class="designed-by">DESIGNED BY</h5>
<h2 class="tomas">Tomas Pocius</h2>
<h4 class="year"></h4>
</div>
<div class="footer-cooperation">
<h4 class="marcia">Designed and developed by  
<a target=”_blank” href="https://www.creativenobody.com">Creative Nobody</a>
</h4>
<div class="footer-socialize">
<h5>SOCIALIZE</h5>
<div class="social-links">
<h6><a target=”_blank” href="https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.instagram.com%2Fdigital.marcia%2F%3Fhl%3Des-la%26fbclid%3DIwAR2LkTWVqALiwD8QsTAGf9lSvXeAN6mqUP5KM1jOfh7HBlR6PF6KzeO0gQo&h=AT0-PeOcns0Ai_q-vUS5fNApa25BGCxetDHzg0Uks3w-mLfa6BOqAP1JHJJHU5-aErNp5SfOaDaHciGcizae4_oHXsUgwKWDNHIYqIGQhBb4JYi95Uwrx6pU5izkQNm3D-FlwGcCMhc">
<img src="img/social-media/instagram.png" alt="instagram logo"></a></h6>
<h6><a target=”_blank” href="https://www.linkedin.com/company/digital-marcia/">
<img src="img/social-media/linkedin.png" alt="linkedin logo"></a></h6>
</div>
</div>
</div>
</div>
</body>
</body>
</html>