๐Ÿ“ฆ Asabeneh / HTML-CSS-Winter-2021

๐Ÿ“„ index.html ยท 164 lines
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164<!DOCTYPE html>
<html lang="eng">
  <head>
    <meta charset="UTF-8" />
    <meta
      name="description"
      content="I am an instructor and developer. I teach HTML, CSS, JS, React, Node, MongoDB, Python"
    />
    <meta name="keywords" content="HTML, CSS, JavaScript, Python, React" />
    <meta name="author" content="Asabeneh Yetayeh" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>HTML and CSS Course</title>
    <link rel="preconnect" href="https://fonts.gstatic.com" />
    <link
      href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;900&family=Montserrat:wght@200;300;400;600;900&family=Open+Sans:wght@300;400;600;800&family=Oswald:wght@300;400;500;600&family=Poppins:wght@200;300;400;600;900&family=Raleway:wght@300;400;600;900&family=Roboto:ital,wght@0,300;0,400;0,500;0,900;1,500&display=swap"
      rel="stylesheet"
    />
    <link
      rel="stylesheet"
      href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
      integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
      crossorigin="anonymous"
    />
    <link rel="stylesheet" href="./assets/styles/main.css" />
  </head>
  <body>
    <div id="root">
      <header>
        <div class="header-wrapper">
          <h1 id="header-title" class="title" title="tooltip">
            Web Development
          </h1>
          <ul id="menu">
            <li>
              <a href="./index.html">HOME</a>
            </li>
            <li>
              <a href="./about.html">About</a>
            </li>
            <li>
              <a href="./contacts.html">Contacts</a>
            </li>
            <li>
              <a href="./projects.html">Projects</a>
            </li>
          </ul>
        </div>
      </header>

      <main>
        <div class="main-wrapper">
          <!-- Front end section-->
          <section id="section-1">
            <h1>Front End</h1>
            <article>
              <ul>
                <li>HTML</li>
                <li>CSS</li>
                <li>JavaScript</li>
              </ul>
            </article>
          </section>
          <!-- Back end section-->
          <section id="section-2">
            <h1>Back End</h1>
            <article>
              <ul>
                <li>Node</li>
                <li>Python</li>
                <li>PHP</li>
                <li>Java</li>
                <li>Ruby</li>
              </ul>
            </article>
          </section>
          <!-- Database section-->
          <section id="section-3">
            <h1>Database</h1>
            <article>
              <ul>
                <li>SQL</li>
                <li>MongoDB</li>
              </ul>
            </article>
          </section>

          <!-- Tools section -->
          <section id="section-4">
            <h1>Tools</h1>
            <article>
              <ol>
                <li>Computer</li>
                <li>Internet</li>
                <li>
                  <a
                    href="https://www.google.com/intl/fi_fi/chrome/"
                    target="_blank"
                    >Browser</a
                  >
                </li>
                <li>
                  <a href="https://code.visualstudio.com/" target="_blank"
                    >Code Editor</a
                  >
                </li>
                <li>
                  <a href="https://www.figma.com/" target="_blank"
                    >Design software</a
                  >
                </li>
                <li>
                  <a href="https://git-scm.com/" target="_blank"
                    >Git(Version control tool)</a
                  >
                </li>
              </ol>
            </article>
          </section>
          <section class="section" id="front-end">
            <h1>Front End technologies</h1>
            <article>
              <img src="./assets/images/html.png" alt="HTML logo" />
              <img src="./assets/images/css_logo.png" alt="CSS Logo" />
              <img src="./assets/images/js_logo.png" alt="JavaScript Logo" />
            </article>
          </section>
          <section id="backend">
            <h1>Backend Technologies</h1>
            <article>
              <img src="./assets/images/node_logo.png" alt="Node logo" />
              <img src="./assets/images/mongodb.png" alt="MongoDB Logo" />
            </article>
          </section>
        </div>
      </main>

      <footer>
        <div class="footer-wrapper">
          <div>
            <small>Copyright &copy; 2021 | Asabeneh Yetayeh</small>
          </div>

          <div>
            <a href="https://github.com/Asabeneh" target="_blank"
              ><i class="fab fa-github-square"></i
            ></a>
            <a href="https://www.linkedin.com/in/asabeneh/" target="_blank"
              ><i class="fab fa-linkedin"></i
            ></a>
            <a href="https://twitter.com/Asabeneh" target="_blank"
              ><i class="fab fa-twitter-square"></i
            ></a>
          </div>
          <div>
            <a href="#root">
              <i class="fas fa-arrow-alt-circle-up"></i>
            </a>
          </div>
        </div>
      </footer>
    </div>
  </body>
</html>