generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patharticle.html
110 lines (99 loc) · 5.78 KB
/
article.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
<!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 href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/style_article.css">
<!--SITE LOGO-->
<title>Article | NeuroGen</title>
</head>
<body>
<!-- HEADER -->
<header class="header-container">
<!--SITE LOGO-->
<div class="logotype-section">
<a class="logotype" href="index.html"><img src="assets/media/img/logo_image.png" alt="Logo Image"></a>
</div>
<!-- NAVBAR-->
<nav class="navbar">
<ul class="navbar-list">
<li class="current navbar-list-item"><a class="navbar-link" href="index.html">Home</a></li>
<li class="navbar-list-item"><a class="navbar-link" href="resources.html">Resources</a></li>
<li class="navbar-list-item"><a class="navbar-link" href="contact.html">Contact</a></li>
</ul></nav>
</header>
<!-- ARTICLE SECTION -->
<div class="article-section-container">
<section class="article-section">
<article class="article">
<div class="article-content">
<img class="article-image" src="./assets/media/img/post_img_1.jpg" alt="Blog Post 1 Image">
<h3 class="article-header">Have you heard of Noopept?</h3>
<p class="article-text">Noopept is a synthetic nootropic compound that was first introduced as a treatment for cognitive impairments and neurodegenerative diseases such as Alzheimer's and Parkinson's disease.
Noopept has gained popularity as a cognitive enhancer and is widely used for its purported memory-boosting and mood-enhancing effects.
</p>
<br>
<p class="article-text">Here are some key findings from research on Noopept:</p>
<li class="article-list article-text"><b>Cognitive Enhancement:</b> Several studies have found that Noopept may enhance cognitive function and memory in both healthy individuals and those with cognitive impairments. For example, a 2013 study published in the Journal of Psychopharmacology found that Noopept improved memory and attention in healthy adult volunteers.</li>
<li class="article-list article-text"><b>Neuroprotective Effects:</b> Noopept has been shown to have neuroprotective effects, which may help protect the brain from damage and degeneration. One study published in the journal Neuroscience Letters found that Noopept reduced oxidative stress and inflammation in the brain of rats with Alzheimer's disease.</li>
<li class="article-list article-text"><b>Potential for Anxiety and Depression:</b> Some studies have suggested that Noopept may have anxiolytic and antidepressant effects. For example, a 2015 study published in the Journal of Psychopharmacology found that Noopept reduced anxiety-like behavior in rats.</li>
<li class="article-list article-text"><b>Mechanisms of Action:</b> Noopept is believed to work by enhancing the activity of acetylcholine and increasing the release of glutamate, a neurotransmitter that is involved in learning and memory. Additionally, Noopept may have antioxidant and anti-inflammatory properties that may help protect the brain from damage.</li>
</div>
</article>
</section>
</div>
<!-- FOOTER -->
<footer class="footer-container">
<ul class="list-inline social-links">
<li class="social-list-item">
<a class="social-links-item" target="_blank" href="https://www.facebook.com/sirak.dev/">
<i class="social-links-item-bg fab fa-facebook" aria-hidden="true"></i>
<span class="sr-only">Facebook</span>
</a>
</li>
<li class="social-list-item">
<a class="social-links-item" target="_blank" href="https://twitter.com/sirak_dev">
<i class="social-links-item-bg fab fa-twitter" aria-hidden="true"></i>
<span class="sr-only">Twitter</span>
</a>
</li>
<li class="social-list-item">
<a class="social-links-item" target="_blank" href="https://www.linkedin.com/in/sirak-k-a203b1156/">
<i class="social-links-item-bg fab fa-linkedin" aria-hidden="true"></i>
<span class="sr-only">LinkedIn</span>
</a>
</li>
<li class="social-list-item">
<a class="social-links-item" target="_blank" href="https://www.pinterest.se/sirakdev/">
<i class="social-links-item-bg fab fa-pinterest" aria-hidden="true"></i>
<span class="sr-only">Pinterest</span>
</a>
</li>
<li class="social-list-item">
<a class="social-links-item" target="_blank" href="https://www.instagram.com/sirak.dev/">
<i class="social-links-item-bg fab fa-instagram" aria-hidden="true"></i>
<span class="sr-only">Instagram</span>
</a>
</li>
</ul>
<!-- NEWSLETTER -->
<section class="newsletter-container">
<div class="newsletter-section">
<h3 class="newsletter-header">Subscribe To Our Newsletter</h3>
<form id="newsletter-form" method="POST" action="https://formdump.codeinstitute.net/">
<input type="email" class="newsletter-form-input" name="Email" placeholder="Enter Email..." required>
<button type="submit" class="newsletter-button">Subscribe</button>
</form>
</div>
</section>
<!-- LANDING TEXT -->
<div class="landing-text">
<h2>Enhance Your Brain.</h2>
<h2>Enhance Your Life.</h2>
</div>
</footer>
</body>
</html>