-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (108 loc) · 3.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta
charset="UTF-8">
<title>Gramado Organization</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0">
<meta
name="description"
content="Official Gramado Organization Webpage">
<meta
name="author"
content="Fred Nora">
<!--
<link rel="shortcut icon" type="image/jpg" href="./assets/img/favicon.jpg"/>
-->
<link href="https://twitter.com/" rel="dns-prefetch"/>
<link href="https://github.com/" rel="dns-prefetch"/>
<link href="./assets/img/pawn-01.jpeg" rel="icon" type="image/x-icon">
<link href="./assets/css/gramado.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Navigation bar -->
<nav class="gramado-nav">
<ul>
<!-- 4: User -->
<li><a href="#section-4">User</a></li>
<!-- 3: Sales person -->
<li><a href="#section-3">Online communication</a></li>
<!-- 2: Business person -->
<li><a href="#section-2">Business</a></li>
<!-- 1: Developer -->
<li><a href="#section-1">Developer</a></li>
</ul>
</nav>
<!-- Main header -->
<header>
<div class="gramado-header">
<br>
<img
class="gramado-header-image"
src="./assets/img/gramado-org.png"
alt="Gramado Organization">
<h1>Gramado Organization</h1>
</div>
</header>
<!-- 4: User -->
<section id="section-4">
<div class="gramado-container">
<br>Hey, how are You?
<br>Welcome to Gramado Organization!
</div>
<div class="gramado-container">
<br>
<img
class="gramado-image"
src="./assets/img/pawn-01.jpeg"
alt="Fred Nora's profile picture">
</div>
<div class="gramado-container">
<button
class="gramado-button"
type="button"
id="button-01"
onclick="gramadoVisitGramadoOnGithub()" >
Gramado on Github
</button>
</div>
</section>
<!-- 3: Sales person -->
<section id="section-3">
<div class="gramado-container gramado-text">
<br>Here is a place to share information.
<br><a href="https://gramado.github.io/learn">Learn</a>
</div>
</section>
<!-- 2: Business person -->
<section id="section-2">
<div class="gramado-container gramado-text">
<br>Business person
<br><a href="https://facebook.com/frednora">See Fred Nora at Facebook</a>
<br><a href="https://linkedin.com/in/frednora">See Fred Nora at Linkedin</a>
</div>
</section>
<!-- 1: Developer -->
<section id="section-1">
<div class="gramado-container gramado-text">
<br>Developer
<br><a href="https://gramado.github.io/projects">See the list of projects</a>
<br><a href="https://github.com/polard8">Polar D8 OS/Gramado OS</a>
</div>
<br>
<div class="gramado-container">
<br><a href="#page-top">\o/</a>
</div>
</section>
<!-- Footer -->
<footer>
<div class="gramado-footer">
<br>© 2024 Gramado Organization
</div>
</footer>
<!-- Cool scripts -->
<script src="./assets/js/gramado.js"></script>
</body>
</html>