坚持学英语20130821-->my homework

本文介绍了两家制造体育设备的公司Ace和United Industries,以及游戏公司Electronic Arts。Ace在芝加哥和迈阿密设有工厂,United Industries在伦敦、蒙特利尔和西雅图设有工厂,而EA则位于加利福尼亚州的Redwood City,是世界第三大游戏公司。

1 introduce the two companies
Ace has 2 factories, its main fatory is in chicago ,has 5000 employees,the other factory is in the
miami has 1150 employees.it manufacture sporting equipments such as tennis ball,tennis sports,and
fish rods.
United industries is a large company, employing almost twenty-five thousand people,it has 3
factories,the first is in london,2000 employees work there,the second is in Montreal,5000 employees
work there,the third is in Seatle,15000 employees work there.it manufactures advanced products such
as rocket engines,satellites,and aircraft parts.

2 introduce a game company
it is located in Redwood City,Caifornia.it is established on May 28,1982 by Trip Hawkins , Electronic
Arts is the world's third-largest gaming company by revenue after Nintendo and Activision Blizzard.
it has many offices in America,Europe and Asia,it has a staff of aroud 10000 employees.its main
competitors are Nintendo and Activision Blizzard.
it produces Sports games,such as Madden NFL,FIFA football/Soccer,Need for Speed,Dead Space,Dragon
Age,Army of Two and Star Wars,itoutsources the game CD to the other company.



3 intruduce a database company
oracle is located in Redwood City,Caifornia.it was established in June,1977 by Larry Ellison and Ed
Oates,it is the largest enterprise software company in the world,more than 100000 employees work
there,its main products are Oracle Database,Oracle Application Server,ERP Manage Software,CRM Manage
Software.its main competitors are IBM and Microsoft.
(the Acquisition about Sun)
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>课程作业管理系统</title> <!-- 引入 Bootstrap 5 CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- 引入 Font Awesome 图标 --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.0.0/css/all.min.css"> <style> body { background-color: #f8f9fa; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } .header { background: linear-gradient(135deg, #0062cc, #0095ff); color: white; padding: 2rem 0; margin-bottom: 2rem; border-radius: 0 0 10px 10px; } .card { border: none; border-radius: 10px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; margin-bottom: 20px; } .card:hover { transform: translateY(-5px); } .card-header { background: linear-gradient(135deg, #0095ff, #0062cc); color: white; border-radius: 10px 10px 0 0 !important; font-weight: bold; } .upload-area { border: 2px dashed #ccc; border-radius: 8px; padding: 2rem; text-align: center; background-color: #fafafa; cursor: pointer; transition: background-color 0.3s; } .upload-area:hover { background-color: #eef5ff; border-color: #0095ff; } .btn-primary { background: linear-gradient(135deg, #0095ff, #0062cc); border: none; } .footer { background-color: #343a40; color: white; padding: 1rem 0; margin-top: 2rem; } </style> </head> <body> <!-- 顶部导航栏 --> <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> <div class="container"> <a class="navbar-brand" href="#"> <i class="fas fa-tasks me-2"></i>课程作业管理系统 </a> <span class="navbar-text ms-auto"> <i class="fas fa-user-circle me-1"></i> 朱莎莎 </span> </div> </nav> <!-- 主标题 --> <div class="header text-center"> <div class="container"> <h1><i class="fas fa-book-open me-2"></i>欢迎来到我的习空间</h1> <p class="lead">这里是 <strong>朱莎莎</strong> 的课程作业与实验报告归档中心</p> </div> </div> <!-- 主要内容区 --> <div class="container"> <div class="row"> <!-- 课程作业提交卡 --> <div class="col-md-6"> <div class="card"> <div class="card-header"> <i class="fas fa-file-upload me-2"></i>课程作业提交 </div> <div class="card-body"> <div class="upload-area" onclick="simulateUpload('homework')"> <i class="fas fa-cloud-upload-alt fa-3x text-muted mb-3"></i> <h5>拖放文件或点击上传</h5> <p class="text-muted">支持格式: PDF, DOC, DOCX, ZIP (最大10MB)</p> </div> <div class="mt-3"> <p class="text-center"><i class="fas fa-info-circle me-1 text-info"></i> <span id="homework-status">未选择文件</span></p> </div> </div> </div> </div> <!-- 实验报告提交卡 --> <div class="col-md-6"> <div class="card"> <div class="card-header"> <i class="fas fa-clipboard-list me-2"></i>实验报告提交 </div> <div class="card-body"> <div class="upload-area" onclick="simulateUpload('report')"> <i class="fas fa-cloud-upload-alt fa-3x text-muted mb-3"></i> <h5>拖放文件或点击上传</h5> <p class="text-muted">支持格式: PDF, DOC, DOCX (最大10MB)</p> </div> <div class="mt-3"> <p class="text-center"><i class="fas fa-info-circle me-1 text-info"></i> <span id="report-status">未选择文件</span></p> </div> </div> </div> </div> </div> <!-- 已提交文件列表 --> <div class="row mt-4"> <div class="col-12"> <div class="card"> <div class="card-header"> <i class="fas fa-list me-2"></i>已提交项目列表 </div> <div class="card-body"> <div class="list-group"> <div class="list-group-item"> <div class="d-flex w-100 justify-content-between"> <h6 class="mb-1"><i class="fas fa-file-pdf text-danger me-2"></i>实验报告一:系统配置</h6> <small class="text-muted">2023-10-20</small> </div> <p class="mb-1">Nginx服务器安装与静态网页部署</p> <small class="text-muted">状态: <span class="text-success">已提交</span></small> </div> <div class="list-group-item"> <div class="d-flex w-100 justify-content-between"> <h6 class="mb-1"><i class="fas fa-file-word text-primary me-2"></i>课程作业一:HTML基础</h6> <small class="text-muted">2023-11-05</small> </div> <p class="mb-1">个人主页设计与实现</p> <small class="text-muted">状态: <span class="text-success">已提交</span></small> </div> <div class="list-group-item"> <div class="d-flex w-100 justify-content-between"> <h6 class="mb-1"><i class="fas fa-file-archive text-warning me-2"></i>大项目:期末设计</h6> <small class="text-muted">2023-12-20 (截止)</small> </div> <p class="mb-1">完整网站开发项目</p> <small class="text-muted">状态: <span class="text-warning">待提交</span></small> </div> </div> </div> </div> </div> </div> </div> <!-- 页脚 --> <div class="footer text-center mt-5"> <div class="container"> <p class="mb-0">© 2023 课程作业管理系统 - 由 Nginx 强力驱动</p> <small>最后更新于: <span id="current-date"></span></small> </div> </div> <!-- 引入 Bootstrap & Popper.js --> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"></script> <!-- 简单的交互脚本 --> <script> // 显示当前日期 document.getElementById('current-date').textContent = new Date().toLocaleDateString('zh-CN', { year: 'numeric', month: 'long', day: 'numeric' }); // 模拟上传功能(只有UI效果) function simulateUpload(type) { const statusElement = document.getElementById(type + '-status'); statusElement.innerHTML = '<span class="text-warning"><i class="fas fa-spinner fa-spin me-1"></i>模拟上传中...</span>'; setTimeout(() => { statusElement.innerHTML = '<span class="text-success"><i class="fas fa-check-circle me-1"></i>模拟上传成功!</span>'; }, 1500); } </script> </body> </html> 我创建了一个作业提交网页 也按照老师的方法进行了迁移 可是这个是静态的 我要提交作业提交不上去 我应该怎么解决这个问题
09-20
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值