Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Una contenta evolución en mi pagina web #124

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions student-cvs/Alfredo-Mendoza-6854/Assets/dibujo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions student-cvs/Alfredo-Mendoza-6854/Assets/dibujo2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions student-cvs/Alfredo-Mendoza-6854/Assets/dibujo3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions student-cvs/Alfredo-Mendoza-6854/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# 👋 Hi I'm Alfredo Mendoza

## I am a technology enthusiast with knowledge in video **game development with unity and C#**
[![UNITY][UNITY]][UNITY-url]

I am studying to become a **Full-Stack Javascript Development**.

[![HTML5][HTML5]][HTML5-url] [![CSS3][CSS3]][CSS3-url] [![JavaScript][JavaScript]][JavaScript-url]

<details>

<summary>Contacts💬</summary>

dytalfredomendoza@gmail.com

**pls don´t spam**

</details>

### What do I like?
- I love old rock music.🎸
- Sports, better if it's white.⚽
- I feel prepared for a zombie apocalypse. 🧟‍♂️
- I think artificial intelligence will make us grow in an unimaginable way and we can't fall asleep.🤖



[MY GITHUB](https://github.com/dytalfredo).





[HTML5]: https://img.shields.io/badge/HTML5-E34F26.svg?style=for-the-badge&logo=HTML5&logoColor=white
[HTML5-url]: https://html.spec.whatwg.org/
[UNITY]: https://img.shields.io/badge/-UNITY-010200.svg?style=for-the-badge&logo=unity&logoColor=white
[UNITY-url]: https://unity.com/es
[CSS3]: https://img.shields.io/badge/CSS3-1572B6.svg?style=for-the-badge&logo=CSS3&logoColor=white
[CSS3-url]: https://www.css3.com/
[JavaScript]: https://img.shields.io/badge/JavaScript-F7DF1E.svg?style=for-the-badge&logo=JavaScript&logoColor=black
[JavaScript-url]: https://www.javascript.com/
79 changes: 79 additions & 0 deletions student-cvs/Alfredo-Mendoza-6854/contacto.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<!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, maximum-scale=1.o">
<title>This is my Profile</title>
<link rel="stylesheet" href="./style.css">

</head>

<body>
<div class="home"><a href="./index.html">°__°</a></div>
<header>

<div class="titulo">
<h1>ALFREDO MENDOZA</h1>
<h2>Desarrollador web Full-Stack</h2>
</div>

</header>
<main>


<section>
<div class="formulario">
<h2>Contactame</h2>
<form action="/server" method="get">
<div class="form-group">
<label for="name">Nombre</label>
<input id="name" type="text" placeholder="Ingrese su nombre" required name="name">


</div>
<div class="form-group">
<label for="email">Correo</label>
<input type="email" placeholder="Ingrese su correo electronico" id="email" required name="email">
</div>
<div class="form-group">
<fieldset>
<legend>
Quieres trabajar conmigo? Cotiza Ya!
</legend>
<input type="radio" name="budge" id="10000" required value="10000"><label for="10000">$10000</label>
<input type="radio" name="budge" id="15000" value="15000"><label for="15000">$15000</label>
<input type="radio" name="budge" id="20000" value="20000"><label for="20000">$20000</label>

</fieldset>
</div>
<div class="form-group">
<label for="type">Tipo de proyecto</label>
<select id="pro" required name="tipoPro">
<option value="" disabled selected>Selecciones Uno</option>
<option>Website</option>
<option>Gamedev</option>
<option>Diseño</option>
<option>Aplicacion</option>
</select>
</div>
<div class="form-group">
<label for="descripcion">Describe el proyecto</label>
<textarea name="proyectDes" id="descripcion" cols="30" rows="5" required></textarea>
</div>
<button type="submit">Enviar</button>
</form>
</div>
</section>
</main>


<div class="slideLeft"></div>
<footer>
<address> <a class="git" href="https://github.com/dytalfredo">MY GITHUB</a></address>
<p>Todos los derechos recervados</p>
</footer>
</body>

</html>
Loading