html.html 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="x-ua-compatible" content="ie=edge">
  6. <title>Default</title>
  7. <meta name="description" content="">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. <link rel="stylesheet" href="resources/css/html_style.css" type="text/css" media="screen" />
  10. </head>
  11. <body>
  12. <div class="front">
  13. <header>
  14. <nav class="site-name">
  15. <a href="/">TermaDev</a>
  16. </nav>
  17. <nav class="links">
  18. <a href="/html.html" class="current">HTML</a>
  19. <a href="/css.html">CSS</a>
  20. <a href="/js.html">JS</a>
  21. </nav>
  22. </header>
  23. <main class="content">
  24. <span>
  25. <nav class="sidebar">
  26. <ul>
  27. <li><a href="#intro">Introduciton</a></li>
  28. <li><a href="#elements">Elements</a></li>
  29. <li><a href="#metadata">Metadata</a></li>
  30. <li><a href="#sectioning">Sectioning</a></li>
  31. <li><a href="#multimedia">Multimedia</a></li>
  32. <li><a href="#tables">Tables</a></li>
  33. <li><a href="#forms">Forms</a></li>
  34. </ul>
  35. </nav>
  36. </span>
  37. <span class="content">
  38. <h1>HyperText Markup Language (HTML)</h1>
  39. <section id="intro">
  40. <h2>Introduction</h2>
  41. <p>
  42. HTML is the standard markup language for creating Web pages. HTML (HyperText Markup Language) is
  43. used to give content
  44. to a web page and instructs web
  45. browsers
  46. on how to structure
  47. that content.
  48. </p>
  49. <article>
  50. <h3>What is HTML?</h3>
  51. <ul>
  52. <li>HTML stands for Hyper Text Markup Language</li>
  53. <li>HTML is the standard markup language for creating Web pages</li>
  54. <li>HTML describes the structure of a Web page</li>
  55. <li>HTML consists of a series of elements</li>
  56. <li>HTML elements tell the browser how to display the content</li>
  57. <li>HTML elements label pieces of content such as "this is a heading", "this is a
  58. paragraph",
  59. "this is a link", etc.
  60. </li>
  61. </ul>
  62. </article>
  63. </section>
  64. <section id="elements">
  65. <h2>HTML Elements</h2>
  66. <p>
  67. HTML (Hypertext Markup Language) elements are the building blocks of web pages. They are used to
  68. structure and
  69. present content on the web.
  70. </p>
  71. <p>
  72. Each HTML element is represented by a tag enclosed in angle brackets
  73. (&lt;&gt;) and typically
  74. consists of an opening tag, content, and a closing tag. The opening tag indicates the
  75. beginning of the element,
  76. and the closing tag signifies the end. The content placed between these tags can include
  77. text, images, links,
  78. and other media, and it is formatted and displayed by web browsers according to the
  79. element's purpose and
  80. attributes.
  81. </p>
  82. <p>
  83. HTML elements are essential for defining the structure and layout of web pages,
  84. making them the foundation of web development.
  85. </p>
  86. </section>
  87. <section id="metadata">
  88. <h2>Document Metadata</h2>
  89. <p>
  90. Metadata contains information about the page. This includes information about styles, scripts
  91. and data to help
  92. software (search engines, browsers, etc.) use and render the page. Metadata for styles and
  93. scripts may be defined in
  94. the page or linked to another file that has the information.
  95. </p>
  96. <table>
  97. <thead>
  98. <tr>
  99. <th>Element</th>
  100. <th>Description</th>
  101. </tr>
  102. </thead>
  103. <tbody>
  104. <tr>
  105. <td>
  106. <a href="#">&lt;base&gt;</a>
  107. </td>
  108. <td>
  109. Specifies the base URL to use for all relative URLs in a document. There can be only
  110. one such element in a document.
  111. </td>
  112. </tr>
  113. <tr>
  114. <td>
  115. <a href="#">&lt;head&gt;</a>
  116. </td>
  117. <td>
  118. Contains machine-readable information (metadata) about the document, like its title,
  119. scripts, and style sheets.
  120. </td>
  121. </tr>
  122. <tr>
  123. <td>
  124. <a href="#">&lt;link&gt;</a>
  125. </td>
  126. <td>
  127. Specifies relationships between the current document and an external resource. This
  128. element is most commonly used to
  129. link to CSS but is also used to establish site icons (both "favicon" style icons and
  130. icons for the home screen and
  131. apps on mobile devices) among other things.
  132. </td>
  133. </tr>
  134. <tr>
  135. <td>
  136. <a href="#">&lt;meta&gt;</a>
  137. </td>
  138. <td>
  139. Represents metadata that cannot be represented by other HTML meta-related elements,
  140. like
  141. &lt;base&gt;,
  142. &lt;link&gt;,
  143. &lt;script&gt;, &lt;style&gt;
  144. and &lt;title&gt;.
  145. </td>
  146. </tr>
  147. <tr>
  148. <td><a href="#">&lt;style&gt;</a></td>
  149. <td>
  150. Contains style information for a document or part of a document. It contains CSS,
  151. which is applied to the contents
  152. of the document containing this element.
  153. </td>
  154. </tr>
  155. <tr>
  156. <td><a href="#">&lt;title&gt;</a></td>
  157. <td>
  158. Defines the document's title that is shown in a browser's title bar or a page's tab.
  159. It only contains text; tags
  160. within the element are ignored.
  161. </td>
  162. </tr>
  163. </tbody>
  164. </table>
  165. </section>
  166. <section id="sectioning">
  167. <h2>Content Sectioning</h2>
  168. <p>Content sectioning elements allow you to organize the document content into logical pieces. Use
  169. the sectioning elements to create a broad outline for your page content,
  170. including header and footer navigation,
  171. and heading elements to identify sections of content.
  172. </p>
  173. <table>
  174. <thead>
  175. <tr>
  176. <th>Element</th>
  177. <th>Description</th>
  178. </tr>
  179. </thead>
  180. <tbody>
  181. <tr>
  182. <td>
  183. <a href="#">
  184. &lt;address&gt;
  185. </a>
  186. </td>
  187. <td>
  188. Indicates that the enclosed HTML provides contact information for a person or
  189. people, or for an organization.
  190. </td>
  191. </tr>
  192. <tr>
  193. <td>
  194. <a href="#">
  195. &lt;article&gt;
  196. </a>
  197. </td>
  198. <td>
  199. Represents a self-contained composition in a document, page, application, or site,
  200. which
  201. is intended to be
  202. independently distributable or reusable (e.g., in syndication). Examples include a
  203. forum
  204. post, a magazine or
  205. newspaper article, a blog entry, a product card, a user-submitted comment, an
  206. interactive widget or gadget, or any
  207. other independent item of content.
  208. </td>
  209. </tr>
  210. <tr>
  211. <td>
  212. <a href="#">
  213. &lt;aside&gt;
  214. </a>
  215. </td>
  216. <td>
  217. Represents a portion of a document whose content is only indirectly related to the
  218. document's main content. Asides
  219. are frequently presented as sidebars or call-out boxes.
  220. </td>
  221. </tr>
  222. <tr>
  223. <td>
  224. <a href="#">
  225. &lt;footer&gt;
  226. </a>
  227. </td>
  228. <td>
  229. Represents a footer for its nearest ancestor sectioning content or sectioning root
  230. element. A &lt;footer&gt; typically
  231. contains information about the author of the section, copyright data, or links to
  232. related documents.
  233. </td>
  234. </tr>
  235. <tr>
  236. <td>
  237. <a href="#">
  238. &lt;header&gt;
  239. </a>
  240. </td>
  241. <td>
  242. Represents introductory content, typically a group of introductory or navigational
  243. aids.
  244. It may contain some heading
  245. elements but also a logo, a search form, an author name, and other elements.
  246. </td>
  247. </tr>
  248. <tr>
  249. <td>
  250. <a href="#">
  251. &lt;h1&gt;, &lt;h2&gt;, &lt;h3&gt;, &lt;h4&gt;, &lt;h5&gt;, &lt;h6&gt;
  252. </a>
  253. </td>
  254. <td>
  255. Represent six levels of section headings. &lt;h1&gt; is the highest section level
  256. and
  257. &lt;h6&gt; is
  258. the lowest.
  259. </td>
  260. </tr>
  261. <tr>
  262. <td>
  263. <a href="#">
  264. &lt;hgroup&gt;
  265. </a>
  266. </td>
  267. <td>
  268. Represents a heading grouped with any secondary content, such as subheadings, an
  269. alternative title, or a tagline.
  270. </td>
  271. </tr>
  272. <tr>
  273. <td>
  274. <a href="#">
  275. &lt;main&gt;
  276. </a>
  277. </td>
  278. <td>
  279. Represents the dominant content of the body of a document. The main content area
  280. consists of content that is
  281. directly related to or expands upon the central topic of a document, or the central
  282. functionality of an application.
  283. </td>
  284. </tr>
  285. <tr>
  286. <td>
  287. <a href="#">
  288. &lt;nav&gt;
  289. </a>
  290. </td>
  291. <td>
  292. Represents a section of a page whose purpose is to provide navigation links, either
  293. within the current document or
  294. to other documents. Common examples of navigation sections are menus, tables of
  295. contents, and indexes.
  296. </td>
  297. </tr>
  298. <tr>
  299. <td>
  300. <a href="#">
  301. &lt;section&gt;
  302. </a>
  303. </td>
  304. <td>
  305. Represents a generic standalone section of a document, which doesn't have a more
  306. specific semantic element to
  307. represent it. Sections should always have a heading, with very few exceptions.
  308. </td>
  309. </tr>
  310. <tr>
  311. <td>
  312. <a href="#">
  313. &lt;search&gt;
  314. </a>
  315. </td>
  316. <td>
  317. Represents a part that contains a set of form controls or other content related to
  318. performing a search or filtering
  319. operation.
  320. </td>
  321. </tr>
  322. </tbody>
  323. </table>
  324. </section>
  325. <section id="multimedia">
  326. <h2>Image and Multimedia</h2>
  327. <p>
  328. HTML supports various multimedia resources such as images,
  329. audio, and video.
  330. </p>
  331. <table>
  332. <thead>
  333. <tr>
  334. <th>Element</th>
  335. <th>Description</th>
  336. </tr>
  337. </thead>
  338. <tbody>
  339. <tr>
  340. <td>
  341. <a href="#">
  342. &lt;area&gt;
  343. </a>
  344. </td>
  345. <td>
  346. Defines an area inside an image map that has predefined clickable areas. An image
  347. map allows geometric areas on an
  348. image to be associated with hyperlink.
  349. </td>
  350. </tr>
  351. <tr>
  352. <td>
  353. <a href="#">
  354. &lt;audio&gt;
  355. </a>
  356. </td>
  357. <td>
  358. Used to embed sound content in documents. It may contain one or more audio sources,
  359. represented using the src
  360. attribute or the source element: the browser will choose the most suitable one. It
  361. can also be the destination for
  362. streamed media, using a MediaStream.
  363. </td>
  364. </tr>
  365. <tr>
  366. <td>
  367. <a href="#">
  368. &lt;img&gt;
  369. </a>
  370. </td>
  371. <td>
  372. Embeds an image into the document.
  373. </td>
  374. </tr>
  375. <tr>
  376. <td>
  377. <a href="#">
  378. &lt;map&gt;
  379. </a>
  380. </td>
  381. <td>
  382. Used with &lt;area&gt; elements to define an image map (a clickable link area).
  383. </td>
  384. </tr>
  385. <tr>
  386. <td>
  387. <a href="#">
  388. &lt;track&gt;
  389. </a>
  390. </td>
  391. <td>
  392. Used as a child of the media elements, audio and video. It lets you specify timed
  393. text tracks (or time-based data),
  394. for example to automatically handle subtitles.
  395. </td>
  396. </tr>
  397. <tr>
  398. <td>
  399. <a href="#">
  400. &lt;video&gt;
  401. </a>
  402. </td>
  403. <td>
  404. Embeds a media player which supports video playback into the document. You can also
  405. use &lt;video&gt; for audio content,
  406. but the audio element may provide a more appropriate user experience.
  407. </td>
  408. </tr>
  409. </tbody>
  410. </table>
  411. </section>
  412. <section id="tables">
  413. <h2>Table Content</h2>
  414. <p>
  415. The elements here are used to create and handle tabular data.
  416. </p>
  417. <table>
  418. <thead>
  419. <tr>
  420. <th>Element</th>
  421. <th>Description</th>
  422. </tr>
  423. </thead>
  424. <tbody>
  425. <tr>
  426. <td>
  427. <a href="#">
  428. &lt;caption&gt;
  429. </a>
  430. </td>
  431. <td>
  432. Specifies the caption (or title) of a table.
  433. </td>
  434. </tr>
  435. <tr>
  436. <td>
  437. <a href="#">
  438. &lt;col&gt;
  439. </a>
  440. </td>
  441. <td>
  442. Defines a column within a table and is used for defining common semantics on all
  443. common cells. It is generally found
  444. within a &lt;colgroup&gt; element.
  445. </td>
  446. </tr>
  447. <tr>
  448. <td>
  449. <a href="#">
  450. &lt;colgroup&gt;
  451. </a>
  452. </td>
  453. <td>
  454. Defines a group of columns within a table.
  455. </td>
  456. </tr>
  457. <tr>
  458. <td>
  459. <a href="#">
  460. &lt;table&gt;
  461. </a>
  462. </td>
  463. <td>
  464. Represents tabular data — that is, information presented in a two-dimensional table
  465. comprised of rows and columns of
  466. cells containing data.
  467. </td>
  468. </tr>
  469. <tr>
  470. <td>
  471. <a href="#">
  472. &lt;tbody&gt;
  473. </a>
  474. </td>
  475. <td>
  476. Encapsulates a set of table rows (
  477. &lt;tr&gt; elements), indicating that they comprise the body of the table
  478. (&lt;table&gt;).
  479. </td>
  480. </tr>
  481. <tr>
  482. <td>
  483. <a href="#">
  484. &lt;td&gt;
  485. </a>
  486. </td>
  487. <td>
  488. Defines a cell of a table that contains data. It participates in the table model.
  489. </td>
  490. </tr>
  491. <tr>
  492. <td>
  493. <a href="#">
  494. &lt;tfoot&gt;
  495. </a>
  496. </td>
  497. <td>
  498. Defines a set of rows summarizing the columns of the table.
  499. </td>
  500. </tr>
  501. <tr>
  502. <td>
  503. <a href="#">
  504. &lt;th&gt;
  505. </a>
  506. </td>
  507. <td>
  508. Defines a cell as a header of a group of table cells. The exact nature of this group
  509. is defined by the scope and
  510. headers attributes.
  511. </td>
  512. </tr>
  513. <tr>
  514. <td>
  515. <a href="#">
  516. &lt;thead&gt;
  517. </a>
  518. </td>
  519. <td>
  520. Defines a set of rows defining the head of the columns of the table.
  521. </td>
  522. </tr>
  523. <tr>
  524. <td>
  525. <a href="#">
  526. &lt;tr&gt;
  527. </a>
  528. </td>
  529. <td>
  530. Defines a row of cells in a table. The row's cells can then be established using a
  531. mix of
  532. &lt;td&gt; (data cell) and
  533. &lt;th&gt; (header cell) elements.
  534. </td>
  535. </tr>
  536. </tbody>
  537. </table>
  538. </section>
  539. <section id="forms">
  540. <h2>Forms</h2>
  541. <p>
  542. HTML provides several elements that can be used together to create forms that the user can fill
  543. out and submit to the website or application.
  544. </p>
  545. <table>
  546. <thead>
  547. <tr>
  548. <th>Element</th>
  549. <th>Description</th>
  550. </tr>
  551. </thead>
  552. <tbody>
  553. <tr>
  554. <td>
  555. <a href="#">
  556. &lt;button&gt;
  557. </a>
  558. </td>
  559. <td>
  560. An interactive element activated by a user with a mouse, keyboard, finger, voice
  561. command, or other assistive
  562. technology. Once activated, it performs an action, such as submitting a form or
  563. opening a dialog.
  564. </td>
  565. </tr>
  566. <tr>
  567. <td>
  568. <a href="#">
  569. &lt;datalist&gt;
  570. </a>
  571. </td>
  572. <td>
  573. Contains a set of &lt;option&gt; elements that represent the permissible or
  574. recommended
  575. options available to choose from
  576. within other controls.
  577. </td>
  578. </tr>
  579. <tr>
  580. <td>
  581. <a href="#">
  582. &lt;fieldset&gt;
  583. </a>
  584. </td>
  585. <td>
  586. Used to group several controls as well as labels (&lt;label&gt;) within a web form.
  587. </td>
  588. </tr>
  589. <tr>
  590. <td>
  591. <a href="#">
  592. &lt;form&gt;
  593. </a>
  594. </td>
  595. <td>
  596. Represents a document section containing interactive controls for submitting
  597. information.
  598. </td>
  599. </tr>
  600. <tr>
  601. <td>
  602. <a href="#">
  603. &lt;input&gt;
  604. </a>
  605. </td>
  606. <td>
  607. Used to create interactive controls for web-based forms to accept data from the
  608. user; a wide variety of types of
  609. input data and control widgets are available, depending on the device and user
  610. agent. The &lt;input&gt; element is one of
  611. the most powerful and complex in all of HTML due to the sheer number of combinations
  612. of input types and attributes.
  613. </td>
  614. </tr>
  615. <tr>
  616. <td>
  617. <a href="#">
  618. &lt;label&gt;
  619. </a>
  620. </td>
  621. <td>
  622. Represents a caption for an item in a user interface.
  623. </td>
  624. </tr>
  625. <tr>
  626. <td>
  627. <a href="#">
  628. &lt;legend&gt;
  629. </a>
  630. </td>
  631. <td>
  632. Represents a caption for the content of its parent &lt;fieldset&gt;.
  633. </td>
  634. </tr>
  635. <tr>
  636. <td>
  637. <a href="#">
  638. &lt;meter&gt;
  639. </a>
  640. </td>
  641. <td>
  642. Represents either a scalar value within a known range or a fractional value.
  643. </td>
  644. </tr>
  645. <tr>
  646. <td>
  647. <a href="#">
  648. &lt;progress&gt;
  649. </a>
  650. </td>
  651. <td>
  652. Displays an indicator showing the completion progress of a task, typically displayed
  653. as a progress bar.
  654. </td>
  655. </tr>
  656. <tr>
  657. <td>
  658. <a href="#">
  659. &lt;select&gt;
  660. </a>
  661. </td>
  662. <td>
  663. Represents a control that provides a menu of options.
  664. </td>
  665. </tr>
  666. <tr>
  667. <td>
  668. <a href="#">
  669. &lt;textarea&gt;
  670. </a>
  671. </td>
  672. <td>
  673. Represents a multi-line plain-text editing control, useful when you want to allow
  674. users to enter a sizeable amount
  675. of free-form text, for example, a comment on a review or feedback form.
  676. </td>
  677. </tr>
  678. </tbody>
  679. </table>
  680. </section>
  681. </span>
  682. </main>
  683. <footer><span><a href="https://notabug.org/anton.puiu" target="_blank"><svg width="62px" height="62px"
  684. viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
  685. <style>
  686. .st0 {
  687. fill: #fff
  688. }
  689. </style>
  690. <g id="Icon">
  691. <circle id="Background" cx="512" cy="512" r="512" />
  692. <path class="st0"
  693. d="M560 256c.6-1.8 2.5-3.2 4.4-2.8 1.5.4 2.1 2 2.4 3.4 5.2 23.2 7 47.3 3.8 71-1.7-11.1-3.4-22.1-5-33.2-.6-7.8-2.5-15.5-3.6-23.2-5.4 21.1-12.1 42.2-23.9 60.7-1.2 2.1-2.9 3.9-3.3 6.3-3.5 42.9-7 85.8-10.5 128.8 8.9 4 16.1 11.3 19.7 20.4 27.8-29.3 54-60.3 76.1-94 50.8-9.7 96.9-33.8 144.4-53.1 13.6 13.2 26.9 26.8 39.2 41.2 3.9 4.9 8.3 9.5 10.7 15.4-17.2-16.1-34.2-32.6-51.4-48.8-32.6 12.9-61.7 33.3-94.4 46-11.6 4.6-23.7 7.9-35.9 10.4-2.3.7-5.3.5-6.7 2.9-6.4 8.7-12.3 17.8-19.3 26.1-18.6 26.3-39.5 50.8-58.6 76.7 0 .8 0 1.7.1 2.5 23.4-6.8 46.5-14.2 69.8-21.1 5.7-.6 11.5-.1 17.3-.4 3.3-.4 5.8 2.1 8.6 3.4 24.1 12.7 51 18.8 77.5 23.8 5.2 1.2 10.7 1.6 15.9 3.2 3.4 2.2 7.2 4.3 9.5 7.7 11.5 15.5 22.6 32.3 26 51.6-6.5-14.7-16.1-27.9-27.2-39.4-2.2-2.1-4.1-5-7.2-5.9-33-12.5-67.7-19.1-102.1-26.6-6.1-1.2-12.1-3.2-18.4-3.6-4.8 1.2-9.2 3.4-13.8 5.1-21.2 8-42.3 16.1-63.6 23.9-1.7.5-1.8 2.7-2.5 4.1 11.2 1 22.5 1.7 33.5 4 .9.3 2.5.3 2.5 1.7 3.4 15 10.7 28.8 18.6 41.9 6.3 10.6 13.5 20.6 20.1 31 2.1 3.5 4.4 7 5.2 11-.3.5-1 1.7-1.4 2.2 7.4 16.6 12 34.4 13.6 52.5.4 3.7.7 7.3 1.6 10.9-.5-.9-1.3-1.7-1.6-2.7l-.1-.8c-.3-4.4-1.8-8.7-2.7-13-3.6-13.2-7.5-26.6-14.9-38.2-.7-1.9-3.4-1-4.3-2.7-8.2-10.2-13-22.5-19-34-7.8-15.3-15-31-25.4-44.7-10-3.2-20-6.2-30-9.4-.6 1.3-1.1 2.6-1.6 3.9 4.1 1.6 8.3 2.9 12.4 4.4-4 19.6-6.9 39.3-10.6 58.9-2 9.7-3.7 19.5-7.1 28.9-1 2.5-2.1 5.4-4.9 6.4-6.5 16.8-13.8 33.3-21 49.8-8.7 19.7-17.5 39.3-27 58.7-2.4 4.7-4.6 9.5-7.7 13.8 14-40.3 31.6-79.3 45.8-119.6-2-6.1.2-12.5 1.7-18.4 7.4-24.6 18.3-48 26.1-72.5-3.7-1.5-7.3-3.2-11-4.4-6.7 8.3-10.8 18.4-18.1 26.2-4.3 4.8-8.8 9.7-14.3 13.2-9.5 6.6-19.9 11.9-30.4 17-10.6 4.7-22.1 8.4-33.8 7.9-9.4-.8-19.1-4.3-25-11.9-9.2-11.6-12.9-26.4-14.9-40.8-2.9-3.9-6.3-7.6-7.7-12.4-3.4-9.6-1.1-20.9 5.7-28.5 1.8-2.3 4.3-3.7 6.3-5.8 4.5-12.6 12.2-23.9 21.6-33.5-12.5-8.8-24.2-18.9-38.1-25.5-17.7 10.4-34.1 22.8-50.9 34.5-22.3 15.9-45.2 31.5-71.1 41.1-2.3.4-2.1 2.9-2.3 4.6-.7 18.3-2.4 36.6-3.3 54.9-.7 6.9-.3 14-1.9 20.8-.9 3.3-3.1 6-5.1 8.7-.4-16.8.7-33.7.9-50.5 1.2-19.7 1.5-39.5 4.7-59 15.2-5.3 30.3-11 44.8-18.2 27.8-13.2 52.9-31.3 77.5-49.6 6.4-.4 12.7 1.6 18.5 4.2 8.4 3.5 16 8.6 23.7 13.4 4.7 2.9 8.9 6.6 14 8.9 1.7-.8 2.9-2.3 4.3-3.5-13.1-11.8-27.2-22.5-39.4-35.3-2.7-2.5-4.9-5.5-7.7-7.8-16.7-12.6-33-25.9-51.4-36-2.5-1-5.2-.8-7.8-1.2-14.7-1.6-29.2-4.5-44-6-4.3-.3-8.4-1.5-12.7-1.3-4.2.1-8.3-1.6-11.1-4.8 12 .5 23.9 2.1 35.9 2.9 13.6 1.4 27.3 2 40.8 3.6 13 6.8 25.1 15.1 37.7 22.6 10.2 5.9 20.4 12.2 31.6 16 2.3.8 4.7 1.3 7.2 1.6 7.8 8.9 14.5 19 23.9 26.4 3.9 2.9 6.5 7.2 7.7 11.9 9.1-5.7 20.1-6.5 30.6-7-5.7-25.5-12.1-50.7-18.7-76-.7-2.3-2.6-3.8-3.9-5.7-13.1-17.2-21.4-37.5-30.6-56.9-5.8-7.7-11.5-15.6-16.2-24.1-1.2-2.3-2.6-4.6-2.7-7.2 8.1 8.4 17.5 15.4 25.7 23.6 2.7 2.6 4.4 6 6.3 9.1 8.5 14.3 15.6 29.3 24 43.6 1.4 2.6 3.3 4.9 4.3 7.7 8.7 29.1 19.7 57.5 29.4 86.3 5.6.5 11.1 1.3 16.6 2.4 5.8-42 10.6-84.2 16.8-126.1 1.6-5.2 4.9-9.8 7-14.8 10.3-21.7 17.5-44.2 26.8-65.8zM406.2 521.1c-4.8 1.1-9.3 3.5-12.9 6.9-9.4 8.6-11.3 24-4.2 34.5 7 11.4 22.9 16 34.9 9.9 11.7-5.4 18.2-19.6 14.5-32-3.5-13.6-18.6-22.7-32.3-19.3zm62 10c-4.8 1.1-9.3 3.5-12.9 6.9-9.4 8.6-11.2 23.9-4.2 34.5 7 11.4 22.9 16 34.9 9.9 11.7-5.4 18.2-19.6 14.5-32-3.5-13.5-18.6-22.7-32.3-19.3z" />
  694. <path class="st0"
  695. d="M424.4 531.9c6.2-2.5 13.2 4.1 11.2 10.4-1.4 6.3-10.2 8.6-14.5 3.8-4.5-4.1-2.6-12.5 3.3-14.2zm5.4 6.3c-1.9 1.1-1.5 4.2.6 4.9 2 .9 4.4-1.5 3.5-3.5-.5-1.6-2.6-2.4-4.1-1.4zm55.7 5.5c6.2-2.5 13.3 4 11.2 10.4-1.4 6.2-10.1 8.6-14.5 3.9-4.5-4.1-2.6-12.5 3.3-14.3zm5.3 6.4c-1.5 1-1.5 3.5 0 4.5 1.7 1.3 4.3-.2 4.3-2.3.1-2.1-2.5-3.6-4.3-2.2z" />
  696. </g>
  697. </svg>
  698. </a>
  699. </span>
  700. <span>
  701. <a href="mailto:anton.puiu@email.com" target="_blank">
  702. <img src="resources/img/mail.png" width="62px">
  703. </a>
  704. </span>
  705. <span>
  706. <a href="https://github.com/antonpuiu" target="_blank">
  707. <img src="resources/img/github.png" width="62px">
  708. </a>
  709. </span>
  710. </footer>
  711. </div>
  712. </body>
  713. </html>